You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This will almost certainly never appear in a real regex, but does appear in fuzzer results. Resolving this will allow more problematic test cases to be uncovered.
re> /(?<=a?b\z)/auto_callout
data> abc
--->abc
+0 ^ (?<=
+0 ^ (?<=
+4 ^ a?
+6 ^ b
+0 ^ (?<=
+4 ^ a?
+6 ^ b
+7 ^ \z
+9 ^ )
+10 ^ End of pattern
0:
data> abc\=no_jit
--->abc
+0 ^ (?<=
+0 ^ (?<=
+4 ^ a?
+6 ^ b
+7 ^^ \z
+0 ^ (?<=
+4 ^ a?
+6 ^ b
+7 ^ \z
+4 ^ a?
+6 ^ b
+7 ^ \z
+0 ^ (?<=
+4 ^ a?
+6 ^ b
+7 ^ \z
+4 ^ a?
+6 ^ b
No match
The text was updated successfully, but these errors were encountered:
without anchored the interpreter correctly matches the empty string at the end of the subject but JIT still shows a bug (using a slightly modified pcre2test to make the matched offset visible) as shown by:
This will almost certainly never appear in a real regex, but does appear in fuzzer results. Resolving this will allow more problematic test cases to be uncovered.
The text was updated successfully, but these errors were encountered: