1
0
mirror of https://github.com/php/php-src.git synced 2026-04-25 00:48:25 +02:00

Fix wrong return

This commit is contained in:
Anatol Belski
2017-11-14 21:44:46 +01:00
parent a57f370e59
commit 91407fb82d
+1 -1
View File
@@ -196,8 +196,8 @@ static void php_pcre_init_pcre2(uint8_t jit)
mdata = pcre2_match_data_create(PHP_PCRE_PREALLOC_MDATA_SIZE, gctx);
if (!mdata) {
pcre2_init_ok = 0;
return;
}
return;
}
pcre2_init_ok = 1;