summaryrefslogtreecommitdiff
path: root/ext/domxml/php_domxml.c
diff options
context:
space:
mode:
authorJoseph Tate <jtate@php.net>2002-08-07 17:03:42 +0000
committerJoseph Tate <jtate@php.net>2002-08-07 17:03:42 +0000
commit3001ecc948efe43926b7817f3a7479dfd94e3810 (patch)
treee733f12c245f03e35a58006287049758e4854b36 /ext/domxml/php_domxml.c
parent17d94ed8211deec813dab428011a9709671a3d72 (diff)
downloadphp-git-3001ecc948efe43926b7817f3a7479dfd94e3810.tar.gz
#Stupid. Sorry.
Diffstat (limited to 'ext/domxml/php_domxml.c')
-rw-r--r--ext/domxml/php_domxml.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/ext/domxml/php_domxml.c b/ext/domxml/php_domxml.c
index 146b915b42..63893328de 100644
--- a/ext/domxml/php_domxml.c
+++ b/ext/domxml/php_domxml.c
@@ -634,11 +634,6 @@ static void php_free_xml_doc(zend_rsrc_list_entry *rsrc TSRMLS_DC)
static void php_free_xml_node(zend_rsrc_list_entry *rsrc TSRMLS_DC)
{
xmlNodePtr node = (xmlNodePtr) rsrc->ptr;
-<<<<<<< php_domxml.c
-
- node_wrapper_dtor(node);
- dom_object_set_data(node, NULL);
-=======
/* if node has no parent, it will not be freed by php_free_xml_doc, so do it here
and for all children as well. */
@@ -651,7 +646,6 @@ static void php_free_xml_node(zend_rsrc_list_entry *rsrc TSRMLS_DC)
node_wrapper_dtor(node);
}
->>>>>>> 1.181
}