diff options
author | foobar <sniper@php.net> | 2000-11-01 05:05:33 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2000-11-01 05:05:33 +0000 |
commit | 2ad70830056391df30cb73bac41bcd3711ecfe20 (patch) | |
tree | 93cf1fafed010ac449dc76c1eca9065d03e6adc6 /ext/domxml/php_domxml.c | |
parent | d6d3f5e9b67ca4b59f50e532b8bc6f1ee055cc6f (diff) | |
download | php-git-2ad70830056391df30cb73bac41bcd3711ecfe20.tar.gz |
No more segfaults.
Diffstat (limited to 'ext/domxml/php_domxml.c')
-rw-r--r-- | ext/domxml/php_domxml.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/domxml/php_domxml.c b/ext/domxml/php_domxml.c index 5cf116fc0a..7b2fed2dc7 100644 --- a/ext/domxml/php_domxml.c +++ b/ext/domxml/php_domxml.c @@ -133,7 +133,7 @@ PHP_MINIT_FUNCTION(domxml) domxmltestnode_class_startup(); #endif - le_domxmldocp = zend_register_list_destructors_ex(xmlFreeDoc, NULL, "domxml document", module_number); + le_domxmldocp = zend_register_list_destructors_ex(php_free_xml_doc, NULL, "domxml document", module_number); /* Freeing the document contains freeing the complete tree. Therefore nodes, attributes etc. may not be freed seperately. */ |