Prevent $base, $parent and $this from being unset.
Некоторые проверки сообщили об ошибках
The build has failed.

Этот коммит содержится в:
Rafal Kupiec 2019-05-29 13:45:38 +02:00
родитель 02471b4ccb
Коммит a6f7c6d847
Подписано: belliash
Идентификатор ключа GPG: 4E829243E0CFE6B4

Просмотреть файл

@ -7580,6 +7580,10 @@ static int vm_builtin_unset(ph7_context *pCtx, int nArg, ph7_value **apArg) {
PH7_VmThrowError(pCtx->pVm, PH7_CTX_ERR, "Expecting a variable not a constant");
}
} else {
if(pObj->iFlags != MEMOBJ_VARIABLE) {
/* Throw an error */
PH7_VmThrowError(pCtx->pVm, PH7_CTX_ERR, "Expecting a variable not AerScript statement");
}
sxu32 nIdx = pObj->nIdx;
PH7_VmUnsetMemObj(&(*pVm), nIdx, FALSE);
}