diff options
author | Zeev Suraski <zeev@php.net> | 2001-07-30 01:56:43 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-07-30 01:56:43 +0000 |
commit | 1c25b8dd532961ecb09932b182457ca0adcf8b57 (patch) | |
tree | 2996afec821096218156f1d914301ad589edf897 /ext/pcre | |
parent | b57703825be0ff40d34ee257ce14c453c4bffb98 (diff) | |
download | php-git-1c25b8dd532961ecb09932b182457ca0adcf8b57.tar.gz |
Avoid TSRMLS_FETCH()'s, and clean up a bit of stale extern's and layout on the way
Diffstat (limited to 'ext/pcre')
-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 3cc25da008..8d7dcb7ba2 100644 --- a/ext/pcre/php_pcre.c +++ b/ext/pcre/php_pcre.c @@ -661,7 +661,7 @@ static int preg_do_eval(char *eval_str, int eval_str_len, char *subject, smart_str_appendl(&code, segment, walk - segment); smart_str_0(&code); - compiled_string_description = zend_make_compiled_string_description("regexp code"); + compiled_string_description = zend_make_compiled_string_description("regexp code" TSRMLS_CC); /* Run the code */ if (zend_eval_string(code.c, &retval, compiled_string_description TSRMLS_CC) == FAILURE) { efree(compiled_string_description); |