summaryrefslogtreecommitdiff
path: root/ext/sablot/sablot.c
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2001-07-30 06:18:13 +0000
committerZeev Suraski <zeev@php.net>2001-07-30 06:18:13 +0000
commit797a079a95585a07bc7f26a79e04521d3b370177 (patch)
tree39e195dd61222e38b934b64d51d3ab37199a0ad3 /ext/sablot/sablot.c
parente8ac55d03c31304b7a68e5b18c16338dff9a5eb5 (diff)
downloadphp-git-797a079a95585a07bc7f26a79e04521d3b370177.tar.gz
More TSRMLS_FETCH work, and a bit of cleanup
Diffstat (limited to 'ext/sablot/sablot.c')
-rw-r--r--ext/sablot/sablot.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/ext/sablot/sablot.c b/ext/sablot/sablot.c
index ad5c807fb8..88c909b2d6 100644
--- a/ext/sablot/sablot.c
+++ b/ext/sablot/sablot.c
@@ -239,22 +239,16 @@ PHP_MINIT_FUNCTION(sablot)
PHP_MSHUTDOWN_FUNCTION(sablot)
{
- TSRMLS_FETCH();
-
if (SABLOTG(processor)) {
SablotUnregHandler(SABLOTG(processor), HLR_MESSAGE, NULL, NULL);
SablotDestroyProcessor(SABLOTG(processor));
}
-
return SUCCESS;
}
PHP_RSHUTDOWN_FUNCTION(sablot)
{
- TSRMLS_FETCH();
-
SABLOT_FREE_ERROR_HANDLE(SABLOTG_HANDLE);
-
return SUCCESS;
}