mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
Fix weird streaming RelaxNG errors
For https://bugzilla.gnome.org/show_bug.cgi?id=512454 The bug was to use compiled determinitic automata when the content model was found to be non-deterministic, leading to random parsing errors.
This commit is contained in:
parent
94431ecba6
commit
9313ae8517
@ -3059,8 +3059,8 @@ xmlRelaxNGCompile(xmlRelaxNGParserCtxtPtr ctxt, xmlRelaxNGDefinePtr def)
|
||||
list = list->next;
|
||||
}
|
||||
xmlAutomataSetFinalState(ctxt->am, ctxt->state);
|
||||
def->contModel = xmlAutomataCompile(ctxt->am);
|
||||
xmlRegexpIsDeterminist(def->contModel);
|
||||
if (xmlAutomataIsDeterminist(ctxt->am))
|
||||
def->contModel = xmlAutomataCompile(ctxt->am);
|
||||
|
||||
xmlFreeAutomata(ctxt->am);
|
||||
ctxt->state = oldstate;
|
||||
|
Loading…
x
Reference in New Issue
Block a user