Fix segmentation fault when trying to clone non-instantiated object.
All checks were successful
The build was successful.

This commit is contained in:
2019-04-24 16:51:43 +02:00
parent 555234e381
commit 5b0b965199

View File

@@ -4553,7 +4553,7 @@ static sxi32 VmByteCodeExec(
}
#endif
/* Make sure we are dealing with a class instance */
if((pTos->iFlags & MEMOBJ_OBJ) == 0) {
if((pTos->iFlags & MEMOBJ_OBJ) == 0 || pTos->x.pOther == 0) {
PH7_VmThrowError(&(*pVm), PH7_CTX_ERR,
"Clone: Expecting a class instance as left operand");
PH7_MemObjRelease(pTos);