mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
parser: Report at least one fatal error
This commit is contained in:
parent
bfed6e6ae8
commit
1d009fe35d
@ -330,7 +330,9 @@ xmlCtxtVErr(xmlParserCtxtPtr ctxt, xmlNodePtr node, xmlErrorDomain domain,
|
|||||||
goto done;
|
goto done;
|
||||||
ctxt->nbWarnings += 1;
|
ctxt->nbWarnings += 1;
|
||||||
} else {
|
} else {
|
||||||
if (ctxt->nbErrors >= XML_MAX_ERRORS)
|
/* Report at least one fatal error. */
|
||||||
|
if ((ctxt->nbErrors >= XML_MAX_ERRORS) &&
|
||||||
|
((level < XML_ERR_FATAL) || (ctxt->wellFormed == 0)))
|
||||||
goto done;
|
goto done;
|
||||||
ctxt->nbErrors += 1;
|
ctxt->nbErrors += 1;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user