Skip to content

Commit d7fd940

Browse files
committed
Fixed #68704
1 parent 1b4f7c3 commit d7fd940

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/pcre/php_pcre.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ PHPAPI pcre_cache_entry* pcre_get_compiled_regex_cache(zend_string *regex)
376376

377377
#if HAVE_SETLOCALE
378378
if (BG(locale_string) &&
379-
(!BG(locale_string)->len != 1 || !BG(locale_string)->val[0] != 'C')) {
379+
(BG(locale_string)->len != 1 || BG(locale_string)->val[0] != 'C')) {
380380
tables = pcre_maketables();
381381
}
382382
#endif

0 commit comments

Comments
 (0)