diff options
author | Zeev Suraski <zeev@php.net> | 2004-02-04 09:56:20 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2004-02-04 09:56:20 +0000 |
commit | f5f7d569a0dc42d4469f4091ecf7d71a7152efc4 (patch) | |
tree | ac12861e33048635195e15c600bc4f456ff9fa65 /ext/reflection/php_reflection.c | |
parent | 24eb1f6eb26417bfbaa300fdcd639ab0b4e1cc0c (diff) | |
download | php-git-f5f7d569a0dc42d4469f4091ecf7d71a7152efc4.tar.gz |
Change destructor implementation (details will follow on internals@)
Diffstat (limited to 'ext/reflection/php_reflection.c')
-rw-r--r-- | ext/reflection/php_reflection.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |