mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
Fix refactoring mistake
Odd, I rebuilt the project but somehow missed this.
This commit is contained in:
@@ -9612,7 +9612,7 @@ ZEND_VM_HANDLER(206, ZEND_FRAMELESS_ICALL_2, ANY, ANY)
|
||||
zend_frameless_function_2 function = (zend_frameless_function_2)ZEND_FLF_HANDLER(opline);
|
||||
ZVAL_NULL(EX_VAR(opline->result.var));
|
||||
zval *arg1 = GET_OP1_ZVAL_PTR_DEREF(BP_VAR_R);
|
||||
zval *arg2 = GET_OP2_ZVAL_PTR_DEREF(opline->op2.var EXECUTE_DATA_CC);
|
||||
zval *arg2 = GET_OP2_ZVAL_PTR_DEREF(BP_VAR_R);
|
||||
if (EG(exception)) {
|
||||
FREE_OP1();
|
||||
FREE_OP2();
|
||||
|
||||
2
Zend/zend_vm_execute.h
generated
2
Zend/zend_vm_execute.h
generated
@@ -3697,7 +3697,7 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_FRAMELESS_ICALL_2_SPEC_HANDLER
|
||||
zend_frameless_function_2 function = (zend_frameless_function_2)ZEND_FLF_HANDLER(opline);
|
||||
ZVAL_NULL(EX_VAR(opline->result.var));
|
||||
zval *arg1 = get_zval_ptr_deref(opline->op1_type, opline->op1, BP_VAR_R);
|
||||
zval *arg2 = get_zval_ptr_deref(opline->op2_type, opline->op2, opline->op2.var EXECUTE_DATA_CC);
|
||||
zval *arg2 = get_zval_ptr_deref(opline->op2_type, opline->op2, BP_VAR_R);
|
||||
if (EG(exception)) {
|
||||
FREE_OP(opline->op1_type, opline->op1.var);
|
||||
FREE_OP(opline->op2_type, opline->op2.var);
|
||||
|
||||
Reference in New Issue
Block a user