diff options
Diffstat (limited to 'Zend/zend_variables.c')
-rw-r--r-- | Zend/zend_variables.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Zend/zend_variables.c b/Zend/zend_variables.c index 7fed1b6fb2..fb7c1a1642 100644 --- a/Zend/zend_variables.c +++ b/Zend/zend_variables.c @@ -90,16 +90,6 @@ ZEND_API void _zval_dtor(zval *zvalue ZEND_FILE_LINE_DC) } -ZEND_API void zval_del_ref(zval **p) -{ - (*p)->refcount--; - if ((*p)->refcount==0) { - zval_dtor(*p); - FREE_ZVAL(*p); - } -} - - ZEND_API void zval_add_ref(zval **p) { (*p)->refcount++; |