We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 789be03 commit dccf1afCopy full SHA for dccf1af
src/pcre2_fuzzsupport.c
@@ -281,7 +281,9 @@ reason to disallow UTF and UCP. Force PCRE2_NEVER_BACKSLASH_C to be set because
281
282
compile_options = ((random_options >> 32) & ALLOWED_COMPILE_OPTIONS) |
283
PCRE2_NEVER_BACKSLASH_C;
284
-match_options = (((uint32_t)random_options) & ALLOWED_MATCH_OPTIONS) | PCRE2_NO_JIT;
+match_options = (((uint32_t)random_options) & ALLOWED_MATCH_OPTIONS) |
285
+ PCRE2_NO_JIT |
286
+ PCRE2_DISABLE_RECURSELOOP_CHECK;
287
288
/* Discard partial matching if PCRE2_ENDANCHORED is set, because they are not
289
allowed together and just give an immediate error return. */
0 commit comments