From e1d314afa20572c81f38fa6a3b68a1454e40b1c9 Mon Sep 17 00:00:00 2001 From: Sterling Hughes Date: Sat, 2 Dec 2000 10:28:55 +0000 Subject: [PATCH] First attempt at fixing 8036 --- ext/sablot/sablot.c | 3 +++ 1 file changed, 3 insertions(+) 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; } -- 2.50.1