mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
valid: Reset context before validating
Reset last error and "stopped" flag. Otherwise new errors could be ignored.
This commit is contained in:
parent
70cce2ece3
commit
5204c872bb
10
valid.c
10
valid.c
@ -6533,8 +6533,11 @@ xmlValidateDtd(xmlValidCtxtPtr ctxt, xmlDocPtr doc, xmlDtdPtr dtd) {
|
||||
*/
|
||||
int
|
||||
xmlCtxtValidateDtd(xmlParserCtxtPtr ctxt, xmlDocPtr doc, xmlDtdPtr dtd) {
|
||||
if (ctxt == NULL)
|
||||
if ((ctxt == NULL) || (ctxt->html))
|
||||
return(0);
|
||||
|
||||
xmlCtxtReset(ctxt);
|
||||
|
||||
return(xmlValidateDtd(&ctxt->vctxt, doc, dtd));
|
||||
}
|
||||
|
||||
@ -6830,8 +6833,11 @@ xmlValidateDocument(xmlValidCtxtPtr vctxt, xmlDocPtr doc) {
|
||||
*/
|
||||
int
|
||||
xmlCtxtValidateDocument(xmlParserCtxtPtr ctxt, xmlDocPtr doc) {
|
||||
if (ctxt == NULL)
|
||||
if ((ctxt == NULL) || (ctxt->html))
|
||||
return(0);
|
||||
|
||||
xmlCtxtReset(ctxt);
|
||||
|
||||
return(xmlValidateDocumentInternal(ctxt, &ctxt->vctxt, doc));
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user