xinclude: Don't create result doc for test with errors

This commit is contained in:
Nick Wellnhofer 2022-10-22 16:48:58 +02:00
parent c99cde3f21
commit ea7c9fb5dd
2 changed files with 4 additions and 6 deletions

View File

@ -1,5 +0,0 @@
<?xml version="1.0"?>
<x xmlns:xinclude="http://www.w3.org/2003/XInclude">
<!-- Simple test of including a set of nodes from an XML document -->
<xinclude:include href="../ents/something.xml#xpointer(//p)"/>
</x>

View File

@ -2102,7 +2102,10 @@ errParseTest(const char *filename, const char *result, const char *err,
#ifdef LIBXML_XINCLUDE_ENABLED
if (options & XML_PARSE_XINCLUDE) {
doc = xmlReadFile(filename, NULL, options);
xmlXIncludeProcessFlags(doc, options);
if (xmlXIncludeProcessFlags(doc, options) < 0) {
xmlFreeDoc(doc);
doc = NULL;
}
} else
#endif
{