Do not check for return value on OP_DONE.
The build was successful. Details

This commit is contained in:
Rafal Kupiec 2019-04-08 13:51:54 +02:00
parent 598dc9ce51
commit 77795bea4c
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
1 changed files with 1 additions and 1 deletions

View File

@ -6783,7 +6783,7 @@ PH7_PRIVATE sxi32 PH7_VmCallClassMethod(
/* Emit the DONE instruction */
aInstr[1].iOp = PH7_OP_DONE;
aInstr[1].iP1 = 1; /* Extract method return value */
aInstr[1].iP2 = 0;
aInstr[1].iP2 = 1;
aInstr[1].p3 = 0;
aInstr[1].bExec = FALSE;
aInstr[1].iLine = 1;