diff options
author | Dmitry Stogov <dmitry@zend.com> | 2017-10-26 22:43:45 +0300 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2017-10-26 22:43:45 +0300 |
commit | 1ab0d820dabc612b7d371d6ed524f60f68101d0f (patch) | |
tree | 30d80a8ee6037f0513e4ade6df116b492236c96c /Zend/zend_execute_API.c | |
parent | 87a6b2947705f2d4569d6133959aa4e11707129c (diff) | |
download | php-git-1ab0d820dabc612b7d371d6ed524f60f68101d0f.tar.gz |
Reverted constant related change (this should be handled togrther with ohter constant related places)
Diffstat (limited to 'Zend/zend_execute_API.c')
-rw-r--r-- | Zend/zend_execute_API.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c index 7792325af8..e69a84ba6b 100644 --- a/Zend/zend_execute_API.c +++ b/Zend/zend_execute_API.c @@ -589,7 +589,7 @@ ZEND_API int zval_update_constant_ex(zval *p, zend_class_entry *scope) /* {{{ */ return zend_use_undefined_constant(name, ast->attr, p); } zval_ptr_dtor_nogc(p); - ZVAL_COPY(p, zv); + ZVAL_DUP(p, zv); } else { zval tmp; |