From 374723d056ceb71617141e202725c92ecb2ee724 Mon Sep 17 00:00:00 2001 From: Arnaud Le Blanc Date: Sun, 14 Sep 2008 15:20:16 +0000 Subject: [PATCH] MFB "Disabled $GLOBALS' refcount modification" --- Zend/zend_gc.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Zend/zend_gc.c b/Zend/zend_gc.c index 7892c6d027..8571cd7b66 100644 --- a/Zend/zend_gc.c +++ b/Zend/zend_gc.c @@ -302,7 +302,9 @@ static void zval_scan_black(zval *pz TSRMLS_DC) static int children_scan_black(zval **pz TSRMLS_DC) { - (*pz)->refcount__gc++; + if (Z_TYPE_PP(pz) != IS_ARRAY || Z_ARRVAL_PP(pz) != &EG(symbol_table)) { + (*pz)->refcount__gc++; + } if (GC_ZVAL_GET_COLOR(*pz) != GC_BLACK) { zval_scan_black(*pz TSRMLS_CC); @@ -346,7 +348,9 @@ static void zval_mark_grey(zval *pz TSRMLS_DC) static int children_mark_grey(zval **pz TSRMLS_DC) { - (*pz)->refcount__gc--; + if (Z_TYPE_PP(pz) != IS_ARRAY || Z_ARRVAL_PP(pz) != &EG(symbol_table)) { + (*pz)->refcount__gc--; + } zval_mark_grey(*pz TSRMLS_CC); return 0; } -- 2.50.1