1 Star 0 Fork 28

sigui/open-iscsi

forked from src-openEuler/open-iscsi 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0019-Resource-leak-Handl-variable-fd.patch 617 Bytes
一键复制 编辑 原始数据 按行查看 历史
wubo009 提交于 2020-05-12 17:27 . backport bugfix for open-iscsi
From 504b990bc886d708ae673ac1fa0e09e7911c2823 Mon Sep 17 00:00:00 2001
From: Chris Leech <cleech@redhat.com>
Date: Thu, 31 Oct 2019 15:08:40 -0700
Subject: [PATCH 40/43] Resource leak: Handle variable fd going out of scope
leaks the handle.
---
iscsiuio/src/unix/main.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/iscsiuio/src/unix/main.c b/iscsiuio/src/unix/main.c
index 5168e4e..5e3f66c 100644
--- a/iscsiuio/src/unix/main.c
+++ b/iscsiuio/src/unix/main.c
@@ -196,6 +196,7 @@ static void daemon_init()
dup2(fd, 2);
setsid();
chdir("/");
+ close(fd);
}
#define ISCSI_OOM_PATH_LEN 48
--
2.21.0
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/si-gui/open-iscsi.git
git@gitee.com:si-gui/open-iscsi.git
si-gui
open-iscsi
open-iscsi
master

搜索帮助