summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schlüter <johannes@php.net>2010-04-20 15:29:03 +0000
committerJohannes Schlüter <johannes@php.net>2010-04-20 15:29:03 +0000
commit5ec6f1e9a10cf58f93eb3c2fd219c4345a940ad8 (patch)
treedb1f167a1d8f6c9a92d557339053f15406155700
parent8c14acfc82e7ab5d5e2a8c3f817eb85a513285ad (diff)
downloadphp-git-5ec6f1e9a10cf58f93eb3c2fd219c4345a940ad8.tar.gz
WS
-rw-r--r--Zend/zend_execute.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_execute.c b/Zend/zend_execute.c
index ba74488c74..b235612896 100644
--- a/Zend/zend_execute.c
+++ b/Zend/zend_execute.c
@@ -848,7 +848,7 @@ static inline zval* zend_assign_tmp_to_variable(zval **variable_ptr_ptr, zval *v
zendi_zval_dtor(garbage);
return variable_ptr;
} else { /* we need to split */
- GC_ZVAL_CHECK_POSSIBLE_ROOT(variable_ptr);
+ GC_ZVAL_CHECK_POSSIBLE_ROOT(variable_ptr);
ALLOC_ZVAL(variable_ptr);
INIT_PZVAL_COPY(variable_ptr, value);
*variable_ptr_ptr = variable_ptr;
@@ -902,7 +902,7 @@ static inline zval* zend_assign_to_variable(zval **variable_ptr_ptr, zval *value
return value;
}
} else { /* we need to split */
- GC_ZVAL_CHECK_POSSIBLE_ROOT(variable_ptr);
+ GC_ZVAL_CHECK_POSSIBLE_ROOT(variable_ptr);
if (PZVAL_IS_REF(value) && Z_REFCOUNT_P(value) > 0) {
ALLOC_ZVAL(variable_ptr);
INIT_PZVAL_COPY(variable_ptr, value);