mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-08-07 06:43:02 +03:00
fixing bug #103969 forgot to add an epsilon transition when building the
* valid.c: fixing bug #103969 forgot to add an epsilon transition when building the automata for elem* Daniel
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
Tue Feb 4 16:31:55 CET 2003 Daniel Veillard <daniel@veillard.com>
|
||||||
|
|
||||||
|
* valid.c: fixing bug #103969 forgot to add an epsilon transition
|
||||||
|
when building the automata for elem*
|
||||||
|
|
||||||
Tue Feb 4 16:21:07 CET 2003 Daniel Veillard <daniel@veillard.com>
|
Tue Feb 4 16:21:07 CET 2003 Daniel Veillard <daniel@veillard.com>
|
||||||
|
|
||||||
* HTMLparser.c: applied patch from Arne de Bruijn fixing
|
* HTMLparser.c: applied patch from Arne de Bruijn fixing
|
||||||
|
2
valid.c
2
valid.c
@@ -544,6 +544,8 @@ xmlValidBuildAContentModel(xmlElementContentPtr content,
|
|||||||
case XML_ELEMENT_CONTENT_MULT:
|
case XML_ELEMENT_CONTENT_MULT:
|
||||||
xmlAutomataNewTransition(ctxt->am, ctxt->state,
|
xmlAutomataNewTransition(ctxt->am, ctxt->state,
|
||||||
ctxt->state, fname, NULL);
|
ctxt->state, fname, NULL);
|
||||||
|
ctxt->state = xmlAutomataNewEpsilon(ctxt->am, ctxt->state,
|
||||||
|
NULL);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (QName != NULL)
|
if (QName != NULL)
|
||||||
|
Reference in New Issue
Block a user