From 0b1ab42ab88513c4f16ff42626155f503d2db172 Mon Sep 17 00:00:00 2001 From: Ilija Tovilo Date: Tue, 6 Feb 2024 17:50:22 +0100 Subject: [PATCH] Fix refactoring mistake Odd, I rebuilt the project but somehow missed this. --- Zend/zend_vm_def.h | 2 +- Zend/zend_vm_execute.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Zend/zend_vm_def.h b/Zend/zend_vm_def.h index eed8c2bdb1d..7b7801e7d1c 100644 --- a/Zend/zend_vm_def.h +++ b/Zend/zend_vm_def.h @@ -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(); diff --git a/Zend/zend_vm_execute.h b/Zend/zend_vm_execute.h index 5b2bb421637..0f89800ec0a 100644 --- a/Zend/zend_vm_execute.h +++ b/Zend/zend_vm_execute.h @@ -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);