summaryrefslogtreecommitdiff
path: root/ext/dom/php_dom.c
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2018-02-17 13:12:29 +0100
committerAnatol Belski <ab@php.net>2018-02-17 13:12:29 +0100
commit0255c2131922cea0db95fe0829a472cadbd9a36b (patch)
tree58e7e1442ce1eaad74c9a1690dcfe80231d09ee3 /ext/dom/php_dom.c
parent114e5d02061f20362280f6f742dcb42602043b39 (diff)
parenta468752e533cdd44773a959da0786921462c5746 (diff)
downloadphp-git-0255c2131922cea0db95fe0829a472cadbd9a36b.tar.gz
Merge branch 'PHP-7.1' into PHP-7.2
* PHP-7.1: Remove duplicated assignment
Diffstat (limited to 'ext/dom/php_dom.c')
-rw-r--r--ext/dom/php_dom.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/dom/php_dom.c b/ext/dom/php_dom.c
index cb2543113d..17bf1811ea 100644
--- a/ext/dom/php_dom.c
+++ b/ext/dom/php_dom.c
@@ -598,7 +598,6 @@ PHP_MINIT_FUNCTION(dom)
memcpy(&dom_object_handlers, zend_get_std_object_handlers(), sizeof(zend_object_handlers));
dom_object_handlers.offset = XtOffsetOf(dom_object, std);
dom_object_handlers.free_obj = dom_objects_free_storage;
- dom_object_handlers.clone_obj = dom_objects_store_clone_obj;
dom_object_handlers.read_property = dom_read_property;
dom_object_handlers.write_property = dom_write_property;
dom_object_handlers.get_property_ptr_ptr = dom_get_property_ptr_ptr;