diff --git a/result/regexp/issue65 b/result/regexp/issue65 new file mode 100644 index 00000000..46bacd3f --- /dev/null +++ b/result/regexp/issue65 @@ -0,0 +1,2 @@ +Regexp: ( (a|bc{0,2})){0,2} d + b d: Ok diff --git a/test/regexp/issue65 b/test/regexp/issue65 new file mode 100644 index 00000000..b71bc073 --- /dev/null +++ b/test/regexp/issue65 @@ -0,0 +1,2 @@ +=>( (a|bc{0,2})){0,2} d + b d diff --git a/xmlregexp.c b/xmlregexp.c index 984c7ac6..80dfc34a 100644 --- a/xmlregexp.c +++ b/xmlregexp.c @@ -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,