From: Sebastian Bergmann Date: Wed, 21 Aug 2002 06:22:19 +0000 (+0000) Subject: Fix ZTS build. X-Git-Tag: RELEASE_0_91~347 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=090e30a8634dfc50fd3595ee95a4c21304a7775c;p=php Fix ZTS build. --- diff --git a/ext/standard/string.c b/ext/standard/string.c index 3b62ea00c4..48f87e02b3 100644 --- a/ext/standard/string.c +++ b/ext/standard/string.c @@ -3993,12 +3993,12 @@ static php_stream_filter_factory strfilter_rot13_factory = { PHP_MINIT_FUNCTION(string_filters) { - return php_stream_filter_register_factory("string.rot13", &strfilter_rot13_factory); + return php_stream_filter_register_factory("string.rot13", &strfilter_rot13_factory TSRMLS_CC); } PHP_MSHUTDOWN_FUNCTION(string_filters) { - return php_stream_filter_unregister_factory("string.rot13"); + return php_stream_filter_unregister_factory("string.rot13" TSRMLS_CC); } /* }}} */