summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>1999-06-06 15:00:49 +0000
committerAndi Gutmans <andi@php.net>1999-06-06 15:00:49 +0000
commitd5dc2cd22cfc2caef02673bfd52bf90971bc674e (patch)
treec08e93cb6d838714904ffd4b0ed7fb25b28f9fa6
parenta821a185e42c3454df0eb19568935e1290cb3974 (diff)
downloadphp-git-d5dc2cd22cfc2caef02673bfd52bf90971bc674e.tar.gz
- Remove the is_ref =1 from the push() function.
-rw-r--r--ext/standard/basic_functions.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c
index 8a5047327d..0fb1571edb 100644
--- a/ext/standard/basic_functions.c
+++ b/ext/standard/basic_functions.c
@@ -2553,7 +2553,6 @@ PHP_FUNCTION(push)
and add it to the end of the array */
for (i=1; i<argc; i++) {
new_var = args[i];
- new_var->is_ref = 1;
new_var->refcount++;
zend_hash_next_index_insert(stack->value.ht, &new_var, sizeof(zval *), NULL);