Skip to content

Commit 6d5922b

Browse files
committed
JIT: Fix incorrect JIT prologur size for CLANG/x86 build
Fixes oss-fuzz #42724
1 parent e004e84 commit 6d5922b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/opcache/jit/zend_jit_x86.dasc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3440,7 +3440,7 @@ static int zend_jit_trace_link_to_root(dasm_State **Dst, zend_jit_trace_info *t,
34403440
#if defined(__x86_64__) || defined(_M_X64)
34413441
prologue_size = 17;
34423442
#else
3443-
prologue_size = 12;
3443+
prologue_size = 13;
34443444
#endif
34453445
}
34463446
link_addr = (const void*)((const char*)t->code_start + prologue_size);

0 commit comments

Comments
 (0)