xmllint: Fix memory leak in parseAndPrintFile
diff --git a/xmllint.c b/xmllint.c
index 57c63c7..a497c4a 100644
--- a/xmllint.c
+++ b/xmllint.c
@@ -2132,7 +2132,7 @@
 	}
 	if (xmlXIncludeProcessFlags(doc, lint->options) < 0) {
 	    lint->progresult = XMLLINT_ERR_UNCLASS;
-            return;
+            goto done;
         }
 	if ((lint->timing) && (lint->repeat == 1)) {
 	    endTimer(lint, "Xinclude processing");