From: Andi Gutmans Date: Sun, 9 Jul 2000 17:12:37 +0000 (+0000) Subject: - Need to seperate if the hash isn't a reference X-Git-Tag: PRE_FILE_COMPILE_API_CHANGE~339 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=40b31d7487193790fb80af7dc396456b8788bbe5;p=php - Need to seperate if the hash isn't a reference --- diff --git a/Zend/zend_execute.c b/Zend/zend_execute.c index 5e6d2329c2..0bc15d35bd 100644 --- a/Zend/zend_execute.c +++ b/Zend/zend_execute.c @@ -2140,6 +2140,8 @@ send_by_ref: if (container) { HashTable *ht; + SEPARATE_ZVAL_IF_NOT_REF(container); + switch ((*container)->type) { case IS_ARRAY: ht = (*container)->value.ht;