diff options
author | andrey <andrey@php.net> | 2012-06-29 14:40:41 +0300 |
---|---|---|
committer | andrey <andrey@php.net> | 2012-06-29 14:40:41 +0300 |
commit | 1ac611f24f03728e4d9cd717e83331e2e17184d2 (patch) | |
tree | 69dceee0471cad1a1c518e8333f0b908e52aa454 /ext/reflection/php_reflection.c | |
parent | f826ea093f8317dda2e5476db128dc5ad3eba442 (diff) | |
parent | e6cf7d774519300c08399cae5bfba90e33749727 (diff) | |
download | php-git-1ac611f24f03728e4d9cd717e83331e2e17184d2.tar.gz |
Merge branch 'PHP-5.3' of ssh://git.php.net/php-src into PHP-5.3
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 180ce8f91a..e98652ba23 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -314,7 +314,7 @@ static zend_object_value reflection_objects_new(zend_class_entry *class_type TSR intern->zo.ce = class_type; zend_object_std_init(&intern->zo, class_type TSRMLS_CC); - zend_hash_copy(intern->zo.properties, &class_type->default_properties, (copy_ctor_func_t) zval_add_ref, (void *) &tmp, sizeof(zval *)); + zend_hash_copy(intern->zo.properties, &class_type->default_properties, (copy_ctor_func_t) zval_property_ctor, (void *) &tmp, sizeof(zval *)); retval.handle = zend_objects_store_put(intern, NULL, reflection_free_objects_storage, NULL TSRMLS_CC); retval.handlers = &reflection_object_handlers; return retval; |