parser: Fix error return of xmlParseBalancedChunkMemory

Only return an error code if the chunk is not well-formed to match the
2.12 behavior. Return 0 on non-fatal errors like invalid namespaces.

Fixes #765.
This commit is contained in:
Nick Wellnhofer 2024-07-08 11:23:39 +02:00
parent 2e63656ec6
commit f51ad063a7

View File

@ -12583,7 +12583,10 @@ xmlParseBalancedChunkMemoryRecover(xmlDocPtr doc, xmlSAXHandlerPtr sax,
else
xmlFreeNodeList(list);
ret = ctxt->errNo;
if (!ctxt->wellFormed)
ret = ctxt->errNo;
else
ret = XML_ERR_OK;
xmlFreeInputStream(input);
xmlFreeParserCtxt(ctxt);