1 Star 0 Fork 44

firstadream/lxc

forked from src-openEuler/lxc 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0034-remove-unnecessary-check.patch 875 Bytes
一键复制 编辑 原始数据 按行查看 历史
From 9ed2e5e3c61b2f54a290678e6f09e55595b603e2 Mon Sep 17 00:00:00 2001
From: liyanshui <[email protected]>
Date: Thu, 29 Jun 2023 01:47:09 +0000
Subject: [PATCH] The if(*(it + 1)) check will always be true as
already verified in for(;it && *it;). Remove it.
---
src/lxc/cgroups/isulad_cgfsng.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/lxc/cgroups/isulad_cgfsng.c b/src/lxc/cgroups/isulad_cgfsng.c
index dcaa229..fbfda97 100644
--- a/src/lxc/cgroups/isulad_cgfsng.c
+++ b/src/lxc/cgroups/isulad_cgfsng.c
@@ -2782,7 +2782,7 @@ bool __cgfsng_delegate_controllers(struct cgroup_ops *ops, const char *cgroup)
(void)strlcat(add_controllers, "+", full_len + 1);
(void)strlcat(add_controllers, *it, full_len + 1);
- if ((it + 1) && *(it + 1))
+ if (*(it + 1))
(void)strlcat(add_controllers, " ", full_len + 1);
}
--
2.30.0
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/firstadream/lxc.git
[email protected]:firstadream/lxc.git
firstadream
lxc
lxc
master

搜索帮助