diff options
| author | Sebastian Bergmann <sebastian@php.net> | 2004-02-01 08:34:47 +0000 |
|---|---|---|
| committer | Sebastian Bergmann <sebastian@php.net> | 2004-02-01 08:34:47 +0000 |
| commit | e4ad9209ed2afe2a03cdb020cd98edc37d066980 (patch) | |
| tree | 62d2d578b2f2334d98cc32dd7b42f21905367988 | |
| parent | 65e22c3316585915e249df87c38b6df241aa434d (diff) | |
| download | php-git-e4ad9209ed2afe2a03cdb020cd98edc37d066980.tar.gz | |
ZTS fix.
| -rw-r--r-- | ext/pcre/php_pcre.c | 2 |
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); } /* }}} */ |
