5 Star 6 Fork 47

OpenHarmony/third_party_libxml2

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
backport-Fix-unintended-fall-through-in-xmlNodeAddContentLen.patch 1013 Bytes
一键复制 编辑 原始数据 按行查看 历史
冉召宇 提交于 2024-04-25 19:13 . libxml2切openEuler7.0
From 2464652537fa5f3b89e71c31eed777b42fa64708 Mon Sep 17 00:00:00 2001
From: Nick Wellnhofer <[email protected]>
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
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/openharmony/third_party_libxml2.git
[email protected]:openharmony/third_party_libxml2.git
openharmony
third_party_libxml2
third_party_libxml2
master

搜索帮助