summaryrefslogtreecommitdiff
path: root/ext/pcre
diff options
context:
space:
mode:
authorSebastian Bergmann <sebastian@php.net>2004-02-01 08:34:47 +0000
committerSebastian Bergmann <sebastian@php.net>2004-02-01 08:34:47 +0000
commite4ad9209ed2afe2a03cdb020cd98edc37d066980 (patch)
tree62d2d578b2f2334d98cc32dd7b42f21905367988 /ext/pcre
parent65e22c3316585915e249df87c38b6df241aa434d (diff)
downloadphp-git-e4ad9209ed2afe2a03cdb020cd98edc37d066980.tar.gz
ZTS fix.
Diffstat (limited to 'ext/pcre')
-rw-r--r--ext/pcre/php_pcre.c2
1 files changed, 1 insertions, 1 deletions
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);
}
/* }}} */