mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
Fix range quantifier on subregex
Make sure to add counted exit transitions before other counter transitions. Otherwise, we won't backtrack correctly. Fixes #65.
This commit is contained in:
parent
48ed5a74bd
commit
382fb056b5
2
result/regexp/issue65
Normal file
2
result/regexp/issue65
Normal file
@ -0,0 +1,2 @@
|
||||
Regexp: ( (a|bc{0,2})){0,2} d
|
||||
b d: Ok
|
2
test/regexp/issue65
Normal file
2
test/regexp/issue65
Normal file
@ -0,0 +1,2 @@
|
||||
=>( (a|bc{0,2})){0,2} d
|
||||
b d
|
@ -1693,12 +1693,12 @@ xmlFAGenerateTransitions(xmlRegParserCtxtPtr ctxt, xmlRegStatePtr from,
|
||||
counter = xmlRegGetCounter(ctxt);
|
||||
ctxt->counters[counter].min = atom->min - 1;
|
||||
ctxt->counters[counter].max = atom->max - 1;
|
||||
/* count the number of times we see it again */
|
||||
xmlFAGenerateCountedEpsilonTransition(ctxt, atom->stop,
|
||||
atom->start, counter);
|
||||
/* allow a way out based on the count */
|
||||
xmlFAGenerateCountedTransition(ctxt, atom->stop,
|
||||
newstate, counter);
|
||||
/* count the number of times we see it again */
|
||||
xmlFAGenerateCountedEpsilonTransition(ctxt, atom->stop,
|
||||
atom->start, counter);
|
||||
/* and if needed allow a direct exit for 0 */
|
||||
if (atom->min == 0)
|
||||
xmlFAGenerateEpsilonTransition(ctxt, atom->start0,
|
||||
|
Loading…
x
Reference in New Issue
Block a user