]> granicus.if.org Git - php/commitdiff
WS
authorJohannes Schlüter <johannes@php.net>
Tue, 20 Apr 2010 15:29:03 +0000 (15:29 +0000)
committerJohannes Schlüter <johannes@php.net>
Tue, 20 Apr 2010 15:29:03 +0000 (15:29 +0000)
Zend/zend_execute.c

index ba74488c749617409461c35ca328af5aecf2eaf7..b2356128965040dacfdeda9d6860c232bc8f007e 100644 (file)
@@ -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);