Skip to content

Commit 3b7647d

Browse files
committed
Fix uninitialized data access
1 parent 4ed78a6 commit 3b7647d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/opcache/jit/zend_jit_trace.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6072,7 +6072,7 @@ static const void *zend_jit_trace(zend_jit_trace_rec *trace_buffer, uint32_t par
60726072
if (!zend_jit_ffi_fetch_dim(&ctx, opline, ssa, ssa_op,
60736073
op1_info, op1_addr, op1_indirect, avoid_refcounting,
60746074
op2_info, OP2_REG_ADDR(), OP2_RANGE(),
6075-
res_info, RES_REG_ADDR(),
6075+
RES_INFO(), RES_REG_ADDR(),
60766076
op1_ffi_type, ffi_info)) {
60776077
goto jit_failure;
60786078
}

0 commit comments

Comments
 (0)