1 Star 0 Fork 44

gaohuatao/lxc

forked from src-openEuler/lxc 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0063-hook-fix-memeory-leak.patch 682 Bytes
一键复制 编辑 原始数据 按行查看 历史
lifeng_isula 提交于 2020-05-11 12:19 . lxc: fix hook memory leak
From 5cff3f195151267b65c88c1412aa9553fa1e0510 Mon Sep 17 00:00:00 2001
From: LiFeng <[email protected]>
Date: Mon, 11 May 2020 12:14:30 +0800
Subject: [PATCH] hook: fix memeory leak
Signed-off-by: LiFeng <[email protected]>
---
src/lxc/conf.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/src/lxc/conf.c b/src/lxc/conf.c
index ad32725..f46255a 100644
--- a/src/lxc/conf.c
+++ b/src/lxc/conf.c
@@ -5447,6 +5447,9 @@ void lxc_conf_free(struct lxc_conf *conf)
lxc_clear_rootfs_ro_paths(conf);
free(conf->errmsg);
lxc_close_error_pipe(conf->errpipe);
+ if (conf->ocihooks) {
+ free_oci_runtime_spec_hooks(conf->ocihooks);
+ }
#endif
free(conf);
}
--
1.8.3.1
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gaohuatao/lxc.git
[email protected]:gaohuatao/lxc.git
gaohuatao
lxc
lxc
master

搜索帮助