Skip to content

Commit dbe9296

Browse files
committed
improve cs
1 parent 5d7aa3d commit dbe9296

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
@@ -647,7 +647,7 @@ PHPAPI pcre_cache_entry* pcre_get_compiled_regex_cache_ex(zend_string *regex, in
647647
if (zv) {
648648
pcre_cache_entry *pce = (pcre_cache_entry*)Z_PTR_P(zv);
649649
#ifdef HAVE_PCRE_JIT_SUPPORT
650-
if (!!(pce->preg_options & PREG_JIT_ATTEMPTED) == jit_enabled) {
650+
if ((bool)(pce->preg_options & PREG_JIT_ATTEMPTED) == jit_enabled) {
651651
#endif
652652
if (key != regex) {
653653
zend_string_release_ex(key, 0);

0 commit comments

Comments
 (0)