From 560e4fa39327e952652b6469d9644fc5fa2c15fa Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Tue, 29 Sep 2015 11:17:43 +0300 Subject: Removed or simplified incorrect SEPARATE_*() macros usage. --- main/php_variables.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main/php_variables.c') diff --git a/main/php_variables.c b/main/php_variables.c index 173d6b075d..2dac0ed0ea 100644 --- a/main/php_variables.c +++ b/main/php_variables.c @@ -649,7 +649,7 @@ static void php_autoglobal_merge(HashTable *dest, HashTable *src) zend_hash_index_update(dest, num_key, src_entry); } } else { - SEPARATE_ZVAL(dest_entry); + SEPARATE_ARRAY(dest_entry); php_autoglobal_merge(Z_ARRVAL_P(dest_entry), Z_ARRVAL_P(src_entry)); } } ZEND_HASH_FOREACH_END(); -- cgit v1.2.1