1 Star 0 Fork 12

caodongxia/tidy

forked from src-openEuler/tidy 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
free-attributes-before-return-NULL.patch 725 Bytes
一键复制 编辑 原始数据 按行查看 历史
yu_boyun 提交于 2020-11-26 10:51 . fix memleakintidyParseBuffer
From 8f0e7aa22a854add9e6082ca5136e82f032a236a Mon Sep 17 00:00:00 2001
From: lutianxiong <lutianxiong@huawei.com>
Date: Sun, 22 Nov 2020 00:10:12 +0800
Subject: [PATCH] Free attributes before return NULL (#899)
---
src/lexer.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/src/lexer.c b/src/lexer.c
index 49b74f5..16a8fef 100644
--- a/src/lexer.c
+++ b/src/lexer.c
@@ -3469,6 +3469,10 @@ static Node* GetTokenFromStream( TidyDocImpl* doc, GetTokenMode mode )
return node; /* the COMMENT token */
}
+ /* check attributes before return NULL */
+ if (attributes)
+ TY_(FreeAttribute)( doc, attributes );
+
DEBUG_LOG(SPRTF("Returning NULL...\n"));
return NULL;
}
--
1.8.3.1
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/caodongxia/tidy.git
git@gitee.com:caodongxia/tidy.git
caodongxia
tidy
tidy
master

搜索帮助