summaryrefslogtreecommitdiff
path: root/ext/domxml/php_domxml.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/domxml/php_domxml.c')
-rw-r--r--ext/domxml/php_domxml.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/domxml/php_domxml.c b/ext/domxml/php_domxml.c
index 8e46a7fc03..c00f618b67 100644
--- a/ext/domxml/php_domxml.c
+++ b/ext/domxml/php_domxml.c
@@ -572,7 +572,7 @@ static inline void node_wrapper_dtor(xmlNodePtr node)
zval *wrapper;
int refcount = 0;
/* FIXME: type check probably unnecessary here? */
- if (!node || Z_TYPE_P(node) == XML_DTD_NODE)
+ if (!node) /* || Z_TYPE_P(node) == XML_DTD_NODE)*/
return;
wrapper = dom_object_get_data(node);