This commit is contained in:
13
engine/vm.c
13
engine/vm.c
@@ -2266,6 +2266,19 @@ static sxi32 VmByteCodeExec(
|
||||
PH7_MemObjToObject(pTos);
|
||||
}
|
||||
break;
|
||||
/*
|
||||
* CVT_VOID: * * *
|
||||
*
|
||||
* Force the top of the stack to be a void type.
|
||||
*/
|
||||
case PH7_OP_CVT_VOID:
|
||||
#ifdef UNTRUST
|
||||
if(pTos < pStack) {
|
||||
goto Abort;
|
||||
}
|
||||
#endif
|
||||
PH7_MemObjToVoid(pTos);
|
||||
break;
|
||||
/*
|
||||
* ERR_CTRL * * *
|
||||
*
|
||||
|
Reference in New Issue
Block a user