File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -350,7 +350,7 @@ ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL zend_jit_loop_trace_helper(ZEND_OPCODE_HAN
350
350
trace_buffer[idx].info = _op | (_info); \
351
351
trace_buffer[idx].ptr = _ptr; \
352
352
idx++; \
353
- if (idx >= ZEND_JIT_TRACE_MAX_LENGTH - 1 ) { \
353
+ if (idx >= ZEND_JIT_TRACE_MAX_LENGTH - 2 ) { \
354
354
stop = ZEND_JIT_TRACE_STOP_TOO_LONG; \
355
355
break; \
356
356
}
@@ -362,7 +362,7 @@ ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL zend_jit_loop_trace_helper(ZEND_OPCODE_HAN
362
362
trace_buffer[idx].op3_type = _op3_type; \
363
363
trace_buffer[idx].ptr = _ptr; \
364
364
idx++; \
365
- if (idx >= ZEND_JIT_TRACE_MAX_LENGTH - 1 ) { \
365
+ if (idx >= ZEND_JIT_TRACE_MAX_LENGTH - 2 ) { \
366
366
stop = ZEND_JIT_TRACE_STOP_TOO_LONG; \
367
367
break; \
368
368
}
You can’t perform that action at this time.
0 commit comments