From 2464652537fa5f3b89e71c31eed777b42fa64708 Mon Sep 17 00:00:00 2001 From: Nick Wellnhofer Date: Wed, 18 May 2022 02:16:34 +0200 Subject: [PATCH] Fix unintended fall-through in xmlNodeAddContentLen Reference:https://github.com/GNOME/libxml2/commit/2464652537fa5f3b89e71c31eed777b42fa64708 Conflict:NA --- tree.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tree.c b/tree.c index ed0a838..fe6f54a 100644 --- a/tree.c +++ b/tree.c @@ -5879,10 +5879,11 @@ xmlNodeAddContentLen(xmlNodePtr cur, const xmlChar *content, int len) { cur->content = xmlStrncatNew(cur->content, content, len); cur->properties = NULL; cur->nsDef = NULL; - break; - } - cur->content = xmlStrncat(cur->content, content, len); + } else { + cur->content = xmlStrncat(cur->content, content, len); + } } + break; case XML_DOCUMENT_NODE: case XML_DTD_NODE: case XML_HTML_DOCUMENT_NODE: -- 2.27.0