diff options
Diffstat (limited to 'ext/pcre/php_pcre.c')
-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 5701ae1a0c..d6f3823d3f 100644 --- a/ext/pcre/php_pcre.c +++ b/ext/pcre/php_pcre.c @@ -376,7 +376,7 @@ PHPAPI pcre_cache_entry* pcre_get_compiled_regex_cache(zend_string *regex) #if HAVE_SETLOCALE if (BG(locale_string) && - (!BG(locale_string)->len != 1 || !BG(locale_string)->val[0] != 'C')) { + (BG(locale_string)->len != 1 || BG(locale_string)->val[0] != 'C')) { tables = pcre_maketables(); } #endif |