summaryrefslogtreecommitdiff
path: root/testdata/testinput6
diff options
context:
space:
mode:
authorph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2017-05-27 15:49:29 +0000
committerph10 <ph10@6239d852-aaf2-0410-a92c-79f79f948069>2017-05-27 15:49:29 +0000
commit25926aac413c2b67359bc03c2a11a86a7a0718da (patch)
treee797b638d83247770757f54b34ab012fe267a039 /testdata/testinput6
parentb7fb2cb1b30ecba2668d22a97b9fc0d4596520a1 (diff)
downloadpcre2-25926aac413c2b67359bc03c2a11a86a7a0718da.tar.gz
Fix lookbehind with zero-length branch in DFA matching. Fixes oss-fuzz 1959.
git-svn-id: svn://vcs.exim.org/pcre2/code/trunk@807 6239d852-aaf2-0410-a92c-79f79f948069
Diffstat (limited to 'testdata/testinput6')
-rw-r--r--testdata/testinput612
1 files changed, 12 insertions, 0 deletions
diff --git a/testdata/testinput6 b/testdata/testinput6
index dfd78a4..df38249 100644
--- a/testdata/testinput6
+++ b/testdata/testinput6
@@ -4929,4 +4929,16 @@
\= Expect no match
X\x00Y
+/(?<=abc|)/
+ abcde\=aftertext
+
+/(?<=|abc)/
+ abcde\=aftertext
+
+/(?<=abc|)/endanchored
+ abcde\=aftertext
+
+/(?<=|abc)/endanchored
+ abcde\=aftertext
+
# End of testinput6