1 Star 0 Fork 28

yanshuai/open-iscsi

forked from src-openEuler/open-iscsi 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0024-Fix-a-possible-passing-null-pointer-in-usr-iface.c-3.patch 786 Bytes
一键复制 编辑 原始数据 按行查看 历史
Wenchao Hao 提交于 2022-12-02 10:20 . Backport bugfix patches from mainline
From bf9f8bc774fbd4f7a1bb79452645aac2c82d950b Mon Sep 17 00:00:00 2001
From: shugaley <54910986+shugaley@users.noreply.github.com>
Date: Thu, 28 Jul 2022 21:57:37 +0300
Subject: [PATCH 1/2] Fix a possible passing null pointer in usr/iface.c (#356)
---
usr/iface.c | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/usr/iface.c b/usr/iface.c
index 9db73c3..3fed236 100644
--- a/usr/iface.c
+++ b/usr/iface.c
@@ -1013,9 +1013,11 @@ static bool ipaddr_is_ipv6(char *ipaddr)
(second_colon != first_colon))
res = true;
}
- }
- log_debug(8, "%s(%s) -> %u",
- __FUNCTION__, ipaddr, res);
+ log_debug(8, "%s(%s) -> %u",
+ __FUNCTION__, ipaddr, res);
+ } else
+ log_debug(8, "%s(nil) -> %u",
+ __FUNCTION__, res);
return res;
}
--
2.27.0
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yanyan11222/open-iscsi.git
git@gitee.com:yanyan11222/open-iscsi.git
yanyan11222
open-iscsi
open-iscsi
master

搜索帮助