From 5dd07023cb5a4ee0c306914c69d14dd303ad0c7d Mon Sep 17 00:00:00 2001 From: Evgeny Vereshchagin Date: Thu, 15 Apr 2021 07:09:10 +0000 Subject: [PATCH] seccomp: init and destroy notifier.cookie It's a follow-up to 84cf6d259b24e4ad48e Closes https://github.com/lxc/lxc/issues/3806 Signed-off-by: Evgeny Vereshchagin --- src/lxc/seccomp.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lxc/seccomp.c b/src/lxc/seccomp.c index bd870d0a8..e2a21c95a 100644 --- a/src/lxc/seccomp.c +++ b/src/lxc/seccomp.c @@ -1310,6 +1310,7 @@ void lxc_seccomp_free(struct lxc_seccomp *seccomp) seccomp_notify_free(seccomp->notifier.req_buf, seccomp->notifier.rsp_buf); seccomp->notifier.req_buf = NULL; seccomp->notifier.rsp_buf = NULL; + free_disarm(seccomp->notifier.cookie); #endif } @@ -1560,6 +1561,7 @@ void seccomp_conf_init(struct lxc_conf *conf) sizeof(conf->seccomp.notifier.proxy_addr)); conf->seccomp.notifier.req_buf = NULL; conf->seccomp.notifier.rsp_buf = NULL; + conf->seccomp.notifier.cookie = NULL; #endif } -- 2.39.5