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 @@ -360,7 +360,7 @@ ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL zend_jit_loop_trace_helper(ZEND_OPCODE_HAN
360
360
trace_buffer[idx].info = _op | (_info); \
361
361
trace_buffer[idx].ptr = _ptr; \
362
362
idx++; \
363
- if (idx >= ZEND_JIT_TRACE_MAX_LENGTH - 1 ) { \
363
+ if (idx >= ZEND_JIT_TRACE_MAX_LENGTH - 2 ) { \
364
364
stop = ZEND_JIT_TRACE_STOP_TOO_LONG; \
365
365
break; \
366
366
}
@@ -372,7 +372,7 @@ ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL zend_jit_loop_trace_helper(ZEND_OPCODE_HAN
372
372
trace_buffer[idx].op3_type = _op3_type; \
373
373
trace_buffer[idx].ptr = _ptr; \
374
374
idx++; \
375
- if (idx >= ZEND_JIT_TRACE_MAX_LENGTH - 1 ) { \
375
+ if (idx >= ZEND_JIT_TRACE_MAX_LENGTH - 2 ) { \
376
376
stop = ZEND_JIT_TRACE_STOP_TOO_LONG; \
377
377
break; \
378
378
}
You can’t perform that action at this time.
0 commit comments