Skip to content

Commit 690ba41

Browse files
committed
Build fix
1 parent 095db03 commit 690ba41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/opcache/jit/zend_jit.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3072,7 +3072,7 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL zend_runtime_jit(ZEND_OPCODE_HANDLE
30723072
}
30733073
}
30743074
jit_extension = (zend_jit_op_array_extension*)ZEND_FUNC_INFO(op_array);
3075-
opline->handler = jit_extension->orig_handler;
3075+
((zend_op*)opline)->handler = jit_extension->orig_handler;
30763076

30773077
/* perform real JIT for this function */
30783078
zend_real_jit_func(op_array, NULL, NULL, ZEND_JIT_ON_FIRST_EXEC);

0 commit comments

Comments
 (0)