1 Star 0 Fork 28

eaglegai/open-iscsi

forked from src-openEuler/open-iscsi 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
6009-Resource-leak-Variable-startup_cmd-going-out-of-scop.patch 665 Bytes
一键复制 编辑 原始数据 按行查看 历史
eulerstorage 提交于 2020-01-09 16:12 . init package
From 5799a5a711a0347e353cfb61b8ea33eb9d38541e Mon Sep 17 00:00:00 2001
From: Chris Leech <cleech@redhat.com>
Date: Wed, 30 Oct 2019 12:03:59 -0700
Subject: [PATCH 24/43] Resource leak: Variable startup_cmd going out of scope
leaks the storage it point to.
---
usr/iscsid_req.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/usr/iscsid_req.c b/usr/iscsid_req.c
index b6940db..427e894 100644
--- a/usr/iscsid_req.c
+++ b/usr/iscsid_req.c
@@ -55,6 +55,8 @@ static void iscsid_startup(void)
if (system(startup_cmd) < 0)
log_error("Could not execute '%s' (err %d)",
startup_cmd, errno);
+
+ free(startup_cmd);
}
#define MAXSLEEP 128
--
2.21.0
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/eaglegai/open-iscsi.git
git@gitee.com:eaglegai/open-iscsi.git
eaglegai
open-iscsi
open-iscsi
master

搜索帮助