From bf36e351ba713057e29b15220125be2eb4e94800 Mon Sep 17 00:00:00 2001 From: Ilia Alshanetsky Date: Tue, 16 Dec 2003 17:14:06 +0000 Subject: Removed duplicate php_libxml_(init|shutdown) they are already done by ext/libxml. --- ext/xml/xml.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'ext/xml/xml.c') diff --git a/ext/xml/xml.c b/ext/xml/xml.c index 8b3306dd57..3a17f31b00 100644 --- a/ext/xml/xml.c +++ b/ext/xml/xml.c @@ -247,10 +247,7 @@ PHP_MINIT_FUNCTION(xml) #else REGISTER_STRING_CONSTANT("XML_SAX_IMPL", "expat", CONST_CS|CONST_PERSISTENT); #endif - -#ifdef LIBXML_EXPAT_COMPAT - php_libxml_initialize(); -#endif + return SUCCESS; } @@ -263,9 +260,6 @@ PHP_RINIT_FUNCTION(xml) PHP_MSHUTDOWN_FUNCTION(xml) { -#ifdef LIBXML_EXPAT_COMPAT - php_libxml_shutdown(); -#endif return SUCCESS; } -- cgit v1.2.1