diff options
author | Andi Gutmans <andi@php.net> | 2000-01-26 05:03:22 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2000-01-26 05:03:22 +0000 |
commit | 4585f7bf1f8e5fb52aebd0990d67fa017ea8a918 (patch) | |
tree | 6f54962014d4695fdd5910019ac7ec4dd0a8adb2 /Zend/zend_execute_API.c | |
parent | 5c3917478a0cbdd4fd7468780e3c8175fd397707 (diff) | |
download | php-git-4585f7bf1f8e5fb52aebd0990d67fa017ea8a918.tar.gz |
- Allow is_ref to become 0 in case the refcount is back to 1.
Diffstat (limited to 'Zend/zend_execute_API.c')
-rw-r--r-- | Zend/zend_execute_API.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c index 912310a555..11a24eec01 100644 --- a/Zend/zend_execute_API.c +++ b/Zend/zend_execute_API.c @@ -217,9 +217,11 @@ ZEND_API void _zval_ptr_dtor(zval **zval_ptr ZEND_FILE_LINE_DC) if ((*zval_ptr)->refcount==0) { zval_dtor(*zval_ptr); safe_free_zval_ptr(*zval_ptr); + } else if ((*zval_ptr)->refcount == 1) { + (*zval_ptr)->is_ref = 0; } } - + ZEND_API inline int i_zend_is_true(zval *op) { |