From: Sebastian Bergmann Date: Sun, 1 Feb 2004 08:34:47 +0000 (+0000) Subject: ZTS fix. X-Git-Tag: php-5.0.0b4RC1~207 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e4ad9209ed2afe2a03cdb020cd98edc37d066980;p=php ZTS fix. --- diff --git a/ext/pcre/php_pcre.c b/ext/pcre/php_pcre.c index 28babfca06..1e0a468c37 100644 --- a/ext/pcre/php_pcre.c +++ b/ext/pcre/php_pcre.c @@ -135,7 +135,7 @@ static PHP_MSHUTDOWN_FUNCTION(pcre) PHPAPI pcre* pcre_get_compiled_regex(char *regex, pcre_extra **extra, int *preg_options TSRMLS_DC) { int compile_options; - return pcre_get_compiled_regex_ex(regex, extra, preg_options, &compile_options); + return pcre_get_compiled_regex_ex(regex, extra, preg_options, &compile_options TSRMLS_CC); } /* }}} */