1 Star 0 Fork 44

firstadream/lxc

forked from src-openEuler/lxc 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0025-fix-ops-hierarchies-cause-coredump.patch 894 Bytes
一键复制 编辑 原始数据 按行查看 历史
DriedYellowPeach 提交于 2023-02-21 23:00 . fix null ops may cause coredump
From 636f30e34dd33a0b888faa9675fe33fb5aa0ad7a Mon Sep 17 00:00:00 2001
From: "Neil.wrz" <[email protected]>
Date: Tue, 21 Feb 2023 22:48:44 -0800
Subject: [PATCH] may cause coredump
---
src/lxc/cgroups/isulad_cgfsng.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/src/lxc/cgroups/isulad_cgfsng.c b/src/lxc/cgroups/isulad_cgfsng.c
index 6ccff63..dcaa229 100644
--- a/src/lxc/cgroups/isulad_cgfsng.c
+++ b/src/lxc/cgroups/isulad_cgfsng.c
@@ -938,8 +938,15 @@ __cgfsng_ops static inline bool isulad_cgfsng_payload_create(struct cgroup_ops *
struct lxc_handler *handler)
{
int i;
+
+ if (!ops)
+ return ret_set_errno(false, ENOENT);
+
char *container_cgroup = ops->container_cgroup;
+ if (!ops->hierarchies)
+ return true;
+
#ifdef HAVE_ISULAD
if (ops->no_controller) {
DEBUG("no controller found, isgnore isulad_cgfsng_payload_create");
--
2.25.1
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/firstadream/lxc.git
[email protected]:firstadream/lxc.git
firstadream
lxc
lxc
master

搜索帮助