From: Sterling Hughes Date: Sat, 2 Dec 2000 10:28:55 +0000 (+0000) Subject: First attempt at fixing 8036 X-Git-Tag: php-4.0.5RC1~1051 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e1d314afa20572c81f38fa6a3b68a1454e40b1c9;p=php First attempt at fixing 8036 --- diff --git a/ext/sablot/sablot.c b/ext/sablot/sablot.c index 558e7fb87f..d8ae642b01 100644 --- a/ext/sablot/sablot.c +++ b/ext/sablot/sablot.c @@ -175,8 +175,11 @@ ZEND_GET_MODULE(sablot) /* MINIT and MINFO Functions */ PHP_MINIT_FUNCTION(sablot) { + SABLOTLS_FETCH(); le_sablot = zend_register_list_destructors_ex(_php_sablot_free_processor, NULL, "Sablotron XSLT", module_number); + SABLOTG(processor) = NULL; + return SUCCESS; }