mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
Fix GH-15497: Opcache with file_cache and JIT enabled crashes (#15635)
This commit is contained in:
@@ -693,7 +693,10 @@ static void zend_persist_op_array(zval *zv)
|
||||
}
|
||||
}
|
||||
#ifdef HAVE_JIT
|
||||
if (JIT_G(on) && JIT_G(opt_level) <= ZEND_JIT_LEVEL_OPT_FUNCS) {
|
||||
if (JIT_G(on)
|
||||
&& JIT_G(opt_level) <= ZEND_JIT_LEVEL_OPT_FUNCS
|
||||
&& (!ZCG(current_persistent_script)
|
||||
|| !ZCG(current_persistent_script)->corrupted)) {
|
||||
zend_jit_op_array(op_array, ZCG(current_persistent_script) ? &ZCG(current_persistent_script)->script : NULL);
|
||||
}
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user