From 443fd9665e9471b8083e2b5770f14f200b880381 Mon Sep 17 00:00:00 2001 From: Nick Wellnhofer Date: Tue, 29 Oct 2019 16:19:37 +0100 Subject: [PATCH 3/3] Another fix for conditional sections at end of document The previous fix introduced an uninitialized read. backport from https://gitlab.gnome.org/GNOME/libxml2/commit/9737ec071786c29788b9aa0971156f9e19a9c6a0 --- parser.c | 1 + 1 file changed, 1 insertion(+) diff --git a/parser.c b/parser.c index f188c9d..84f1723 100644 --- a/parser.c +++ b/parser.c @@ -6725,6 +6725,7 @@ xmlParseConditionalSections(xmlParserCtxtPtr ctxt) { if (RAW == 0) { xmlFatalErr(ctxt, XML_ERR_CONDSEC_NOT_FINISHED, NULL); + goto error; } if (ctxt->input->id != id) { xmlFatalErrMsg(ctxt, XML_ERR_ENTITY_BOUNDARY, -- 2.18.1