File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,8 @@ PHP NEWS
27
27
. Fixed bug GH-15367 (dl() of module with aliased class crashes in shutdown).
28
28
(Arnaud)
29
29
. Fixed OSS-Fuzz #403308724. (nielsdos)
30
+ . Fixed bug GH-13193 again (Significant performance degradation in 'foreach').
31
+ (nielsdos)
30
32
31
33
- DBA:
32
34
. Fixed assertion violation when opening the same file with dba_open
Original file line number Diff line number Diff line change @@ -1917,7 +1917,7 @@ ZEND_API int zend_gc_collect_cycles(void)
1917
1917
bool did_rerun_gc = 0 ;
1918
1918
1919
1919
zend_hrtime_t start_time = zend_hrtime ();
1920
- if (GC_G (num_roots ) && GC_G (gc_active )) {
1920
+ if (GC_G (num_roots ) && ! GC_G (gc_active )) {
1921
1921
zend_gc_remove_root_tmpvars ();
1922
1922
}
1923
1923
You can’t perform that action at this time.
0 commit comments