File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,10 @@ PHP NEWS
39
39
- ODBC:
40
40
. Fixed bug #80592 (all floats are the same in ODBC parameters). (cmb)
41
41
42
+ - Opcache:
43
+ . Fixed bug #80422 (php_opcache.dll crashes when using Apache 2.4 with JIT).
44
+ (Dmitry)
45
+
42
46
- PDO_Firebird:
43
47
. Fixed bug #80521 (Parameters with underscores no longer recognized). (cmb,
44
48
Simonov Denis)
Original file line number Diff line number Diff line change @@ -7629,6 +7629,11 @@ static void zend_jit_trace_init_caches(void)
7629
7629
static void zend_jit_trace_reset_caches (void )
7630
7630
{
7631
7631
JIT_G (tracing ) = 0 ;
7632
+ #ifdef ZTS
7633
+ if (!JIT_G (exit_counters )) {
7634
+ JIT_G (exit_counters ) = calloc (JIT_G (max_exit_counters ), 1 );
7635
+ }
7636
+ #endif
7632
7637
}
7633
7638
7634
7639
static void zend_jit_trace_restart (void )
You can’t perform that action at this time.
0 commit comments