diff options
author | Sterling Hughes <sterling@php.net> | 2000-12-02 10:28:55 +0000 |
---|---|---|
committer | Sterling Hughes <sterling@php.net> | 2000-12-02 10:28:55 +0000 |
commit | e1d314afa20572c81f38fa6a3b68a1454e40b1c9 (patch) | |
tree | 47e9db588052f101a28890de47429c2de7afa6d8 | |
parent | 182724f477a218e5db6662999e770483b26326b9 (diff) | |
download | php-git-e1d314afa20572c81f38fa6a3b68a1454e40b1c9.tar.gz |
First attempt at fixing 8036
-rw-r--r-- | ext/sablot/sablot.c | 3 |
1 files changed, 3 insertions, 0 deletions
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; } |