Skip to content

Commit 74f9930

Browse files
committed
Fixed static call
1 parent ec1d9eb commit 74f9930

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
@@ -7594,7 +7594,7 @@ ZEND_VM_HANDLER(158, ZEND_PROXY_CALL, ANY, ANY)
75947594
if (call->func->type == ZEND_USER_FUNCTION) {
75957595
call->symbol_table = NULL;
75967596
i_init_func_execute_data(call, &call->func->op_array,
7597-
ret, (fbc->common.fn_flags & ZEND_ACC_STATIC) == 0);
7597+
ret, (call->func->common.fn_flags & ZEND_ACC_STATIC) == 0);
75987598

75997599
zend_free_proxy_call_func(fbc);
76007600

Zend/zend_vm_execute.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1808,7 +1808,7 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_PROXY_CALL_SPEC_HANDLER(ZEND_O
18081808
if (call->func->type == ZEND_USER_FUNCTION) {
18091809
call->symbol_table = NULL;
18101810
i_init_func_execute_data(call, &call->func->op_array,
1811-
ret, (fbc->common.fn_flags & ZEND_ACC_STATIC) == 0);
1811+
ret, (call->func->common.fn_flags & ZEND_ACC_STATIC) == 0);
18121812

18131813
zend_free_proxy_call_func(fbc);
18141814

0 commit comments

Comments
 (0)