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
2727 . Fixed bug GH-15367 (dl() of module with aliased class crashes in shutdown).
2828 (Arnaud)
2929 . Fixed OSS-Fuzz #403308724. (nielsdos)
30+ . Fixed bug GH-13193 again (Significant performance degradation in 'foreach').
31+ (nielsdos)
3032
3133- DBA:
3234 . 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)
19171917 bool did_rerun_gc = 0 ;
19181918
19191919 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 )) {
19211921 zend_gc_remove_root_tmpvars ();
19221922 }
19231923
You can’t perform that action at this time.
0 commit comments