mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
xinclude: Don't create result doc for test with errors
This commit is contained in:
parent
c99cde3f21
commit
ea7c9fb5dd
@ -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>
|
@ -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
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user