Skip to content

Commit 07c9d50

Browse files
committed
Fix uninitialized opx_info
1 parent 49e7a47 commit 07c9d50

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

ext/opcache/jit/zend_jit_trace.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6089,12 +6089,17 @@ static const void *zend_jit_trace(zend_jit_trace_rec *trace_buffer, uint32_t par
60896089
jit_frameless_icall0(jit, opline);
60906090
goto done;
60916091
case ZEND_FRAMELESS_ICALL_1:
6092+
op1_info = OP1_INFO();
60926093
jit_frameless_icall1(jit, opline, op1_info);
60936094
goto done;
60946095
case ZEND_FRAMELESS_ICALL_2:
6096+
op1_info = OP1_INFO();
6097+
op2_info = OP2_INFO();
60956098
jit_frameless_icall2(jit, opline, op1_info, op2_info);
60966099
goto done;
60976100
case ZEND_FRAMELESS_ICALL_3:
6101+
op1_info = OP1_INFO();
6102+
op2_info = OP2_INFO();
60986103
jit_frameless_icall3(jit, opline, op1_info, op2_info, OP1_DATA_INFO());
60996104
goto done;
61006105
default:

0 commit comments

Comments
 (0)