mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
Merge branch 'PHP-8.3'
* PHP-8.3: Fix GH-15820: Core dumped with jit.opcache=1245
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user