diff options
| author | Dmitry Stogov <dmitry@zend.com> | 2014-02-27 16:07:36 +0400 |
|---|---|---|
| committer | Dmitry Stogov <dmitry@zend.com> | 2014-02-27 16:07:36 +0400 |
| commit | 3696e038e5e52cb231b5f0004c53cafed04f90c7 (patch) | |
| tree | 728a0cb04711142a7856b7b523595e4601773e68 /Zend/zend_execute_API.c | |
| parent | 4ba590697eaac2242389f78110b60ddd4c29a779 (diff) | |
| download | php-git-3696e038e5e52cb231b5f0004c53cafed04f90c7.tar.gz | |
Various fixes related to read_property(), read_dimension() and iterators refactoring
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 c8679625c1..e81339b138 100644 --- a/Zend/zend_execute_API.c +++ b/Zend/zend_execute_API.c @@ -477,7 +477,7 @@ ZEND_API int zval_update_constant_ex(zval *p, void *arg, zend_class_entry *scope zend_error(E_ERROR, "Cannot declare self-referencing constant '%s'", Z_STRVAL_P(p)); } else if ((Z_TYPE_P(p) & IS_CONSTANT_TYPE_MASK) == IS_CONSTANT) { int refcount; - zend_uchar is_ref; +//??? zend_uchar is_ref; SEPARATE_ZVAL_IF_NOT_REF(p); |
