From: Marcus Boerger Date: Sat, 29 Nov 2003 18:23:35 +0000 (+0000) Subject: This takes the address of a zval ptr X-Git-Tag: php-5.0.0b3RC1~516 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6344f662a577e415e6b5e1e3e5c201f23219b490;p=php This takes the address of a zval ptr --- diff --git a/Zend/zend_API.h b/Zend/zend_API.h index 9cdb44c95d..0368ef5641 100644 --- a/Zend/zend_API.h +++ b/Zend/zend_API.h @@ -386,7 +386,7 @@ ZEND_API ZEND_FUNCTION(display_disabled_class); zval_copy_ctor(z); \ } \ if (dtor) { \ - zval_ptr_dtor(zv); \ + zval_ptr_dtor(&zv); \ } \ (z)->is_ref = is_ref; \ (z)->refcount = refcount; \