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/xmlwriter/php_xmlwriter.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/xmlwriter/php_xmlwriter.c')
-rw-r--r-- | ext/xmlwriter/php_xmlwriter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/xmlwriter/php_xmlwriter.c b/ext/xmlwriter/php_xmlwriter.c index 588ca4bf3a..c1152eb113 100644 --- a/ext/xmlwriter/php_xmlwriter.c +++ b/ext/xmlwriter/php_xmlwriter.c @@ -151,7 +151,7 @@ static zend_object_value xmlwriter_object_new(zend_class_entry *class_type TSRML intern->xmlwriter_ptr = NULL; 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, + 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, |