5 Star 6 Fork 47

OpenHarmony/third_party_libxml2

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
backport-malloc-fail-Fix-memory-leak-in-xmlXIncludeAddNode.patch 786 Bytes
一键复制 编辑 原始数据 按行查看 历史
冉召宇 提交于 2024-04-25 19:13 . libxml2切openEuler7.0
From 3b59fdf001f030e1b2180d3303347119e05d8dcb Mon Sep 17 00:00:00 2001
From: Nick Wellnhofer <[email protected]>
Date: Wed, 15 Feb 2023 13:28:24 +0100
Subject: [PATCH] malloc-fail: Fix memory leak in xmlXIncludeAddNode
Found with libFuzzer, see #344.
Reference:https://github.com/GNOME/libxml2/commit/3b59fdf001f030e1b2180d3303347119e05d8dcb
Conflict:xinclude.c
---
xinclude.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/xinclude.c b/xinclude.c
index 6e5b61d..cc22848 100644
--- a/xinclude.c
+++ b/xinclude.c
@@ -660,6 +660,7 @@ xmlXIncludeAddNode(xmlXIncludeCtxtPtr ctxt, xmlNodePtr cur) {
ref = xmlXIncludeNewRef(ctxt, URL, cur);
xmlFree(URL);
if (ref == NULL) {
+ xmlFree(fragment);
return(-1);
}
ref->fragment = fragment;
--
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

搜索帮助