mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Merge branch 'PHP-8.3'
* PHP-8.3: Fix GH-15820: Core dumped with jit.opcache=1245
This commit is contained in:
commit
bdcb2185aa
1 changed files with 1 additions and 1 deletions
|
@ -3348,7 +3348,7 @@ static int zend_jit_parse_config_num(zend_long jit)
|
|||
JIT_G(opt_level) = jit % 10;
|
||||
|
||||
jit /= 10;
|
||||
if (jit % 10 > 5) return FAILURE;
|
||||
if (jit % 10 > 5 || jit % 10 == 4) return FAILURE;
|
||||
JIT_G(trigger) = jit % 10;
|
||||
|
||||
jit /= 10;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue