valid: Reset context before validating

Reset last error and "stopped" flag. Otherwise new errors could be
ignored.
This commit is contained in:
Nick Wellnhofer 2024-11-26 10:40:16 +01:00
parent 70cce2ece3
commit 5204c872bb

10
valid.c
View File

@ -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));
}