Removed or simplified incorrect SEPARATE_*() macros usage.

This commit is contained in:
Dmitry Stogov 2015-09-29 11:17:43 +03:00
parent 617bef558b
commit 560e4fa393
16 changed files with 13 additions and 39 deletions

View file

@ -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();