1 Star 0 Fork 11

kerongw / augeas

forked from src-openEuler / augeas 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
decrease-HASHCOUNT_T_MAX-to-avoid-the-OOM-during-the-Fuzz-test.patch 857 Bytes
一键复制 编辑 原始数据 按行查看 历史
From 31603e0a701dc198eb459093eb0a08751a3d0b95 Mon Sep 17 00:00:00 2001
From: chengguipeng <chengguipeng1@huawei.com>
Date: Fri, 18 Dec 2020 12:41:03 +0800
Subject: [PATCH] Decrease the value of HASHCOUNT_T_MAX to avoid the OOM during the Fuzz test
https://github.com/hercules-team/augeas/commit/31603e0a701dc198eb459093eb0a08751a3d0b95
Signed-off-by: MR-sanman <sanman123117@163.com>
---
src/hash.h | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/hash.h b/src/hash.h
index 4b38dff5..3c4f6c34 100644
--- a/src/hash.h
+++ b/src/hash.h
@@ -35,7 +35,8 @@ extern "C" {
#endif
typedef unsigned long hashcount_t;
-#define HASHCOUNT_T_MAX ULONG_MAX
+//Decrease the value of HASHCOUNT_T_MAX to avoid the OOM during the Fuzz test
+#define HASHCOUNT_T_MAX 819200
typedef unsigned long hash_val_t;
#define HASH_VAL_T_MAX ULONG_MAX
1
https://gitee.com/kerongw/augeas.git
git@gitee.com:kerongw/augeas.git
kerongw
augeas
augeas
master

搜索帮助