Skip to content

Commit 0b1ab42

Browse files
committed
Fix refactoring mistake
Odd, I rebuilt the project but somehow missed this.
1 parent 631bc81 commit 0b1ab42

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Zend/zend_vm_def.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9612,7 +9612,7 @@ ZEND_VM_HANDLER(206, ZEND_FRAMELESS_ICALL_2, ANY, ANY)
96129612
zend_frameless_function_2 function = (zend_frameless_function_2)ZEND_FLF_HANDLER(opline);
96139613
ZVAL_NULL(EX_VAR(opline->result.var));
96149614
zval *arg1 = GET_OP1_ZVAL_PTR_DEREF(BP_VAR_R);
9615-
zval *arg2 = GET_OP2_ZVAL_PTR_DEREF(opline->op2.var EXECUTE_DATA_CC);
9615+
zval *arg2 = GET_OP2_ZVAL_PTR_DEREF(BP_VAR_R);
96169616
if (EG(exception)) {
96179617
FREE_OP1();
96189618
FREE_OP2();

Zend/zend_vm_execute.h

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)