summaryrefslogtreecommitdiff
path: root/ext/simplexml/simplexml.c
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2003-12-16 17:14:06 +0000
committerIlia Alshanetsky <iliaa@php.net>2003-12-16 17:14:06 +0000
commitbf36e351ba713057e29b15220125be2eb4e94800 (patch)
tree690934123399e3a19f118ceac0db15a1d23dd80f /ext/simplexml/simplexml.c
parentc002553d7c42863238449b05f5d9a187ffa021a0 (diff)
downloadphp-git-bf36e351ba713057e29b15220125be2eb4e94800.tar.gz
Removed duplicate php_libxml_(init|shutdown) they are already done by
ext/libxml.
Diffstat (limited to 'ext/simplexml/simplexml.c')
-rw-r--r--ext/simplexml/simplexml.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/ext/simplexml/simplexml.c b/ext/simplexml/simplexml.c
index 986f8c3f14..b753edc9c5 100644
--- a/ext/simplexml/simplexml.c
+++ b/ext/simplexml/simplexml.c
@@ -1533,8 +1533,6 @@ PHP_MINIT_FUNCTION(simplexml)
sxe_object_handlers.get_class_entry = zend_get_std_object_handlers()->get_class_entry;
sxe_object_handlers.get_class_name = zend_get_std_object_handlers()->get_class_name;
- php_libxml_initialize();
-
return SUCCESS;
}
/* }}} */
@@ -1543,8 +1541,6 @@ PHP_MINIT_FUNCTION(simplexml)
*/
PHP_MSHUTDOWN_FUNCTION(simplexml)
{
- php_libxml_shutdown();
-
return SUCCESS;
}
/* }}} */