- That doesn't seem like a smart thing to do :)

- I wonder if gcc optimized it out.
This commit is contained in:
Andi Gutmans 2001-01-27 12:29:02 +00:00
parent eb10bf2358
commit f67df57491

View File

@ -344,7 +344,7 @@ static inline void zend_assign_to_variable(znode *result, znode *op1, znode *op2
if (variable_ptr==value) {
variable_ptr->refcount++;
} else if (PZVAL_IS_REF(value)) {
zval tmp = *value;
zval tmp;
tmp = *value;
zval_copy_ctor(&tmp);