From f5f7d569a0dc42d4469f4091ecf7d71a7152efc4 Mon Sep 17 00:00:00 2001 From: Zeev Suraski Date: Wed, 4 Feb 2004 09:56:20 +0000 Subject: Change destructor implementation (details will follow on internals@) --- ext/reflection/php_reflection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/reflection/php_reflection.c') diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index e97436267d..08ca5e5a5b 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -223,7 +223,7 @@ static zend_object_value reflection_objects_new(zend_class_entry *class_type TSR ALLOC_HASHTABLE(intern->zo.properties); zend_hash_init(intern->zo.properties, 0, NULL, ZVAL_PTR_DTOR, 0); - retval.handle = zend_objects_store_put(intern, reflection_objects_dtor, reflection_objects_clone TSRMLS_CC); + retval.handle = zend_objects_store_put(intern, reflection_objects_dtor, NULL, reflection_objects_clone TSRMLS_CC); retval.handlers = &reflection_object_handlers; return retval; } -- cgit v1.2.1