We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e6a368 commit 447d143Copy full SHA for 447d143
NEWS
@@ -7,6 +7,8 @@ PHP NEWS
7
(Arnaud)
8
. Fixed bug GH-15367 (dl() of module with aliased class crashes in shutdown).
9
10
+ . Fixed bug GH-13193 again (Significant performance degradation in 'foreach').
11
+ (nielsdos)
12
13
- DOM:
14
. Fix weird unpack behaviour in DOM. (nielsdos)
Zend/zend_gc.c
@@ -1783,7 +1783,7 @@ ZEND_API int zend_gc_collect_cycles(void)
1783
bool did_rerun_gc = 0;
1784
1785
zend_hrtime_t start_time = zend_hrtime();
1786
- if (GC_G(num_roots) && GC_G(gc_active)) {
+ if (GC_G(num_roots) && !GC_G(gc_active)) {
1787
zend_gc_remove_root_tmpvars();
1788
}
1789
0 commit comments