From 16286dea31d0109f646cf52a16cec7a6caa4d6cc Mon Sep 17 00:00:00 2001 From: Nick Wellnhofer Date: Fri, 17 Jan 2025 23:03:20 +0100 Subject: [PATCH] xmllint: Fix memory leak in parseAndPrintFile --- xmllint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xmllint.c b/xmllint.c index 57c63c78..a497c4a7 100644 --- a/xmllint.c +++ b/xmllint.c @@ -2132,7 +2132,7 @@ parseAndPrintFile(xmllintState *lint, const char *filename) { } if (xmlXIncludeProcessFlags(doc, lint->options) < 0) { lint->progresult = XMLLINT_ERR_UNCLASS; - return; + goto done; } if ((lint->timing) && (lint->repeat == 1)) { endTimer(lint, "Xinclude processing");