From 5a4bd2f65b38a891237b3d73255eff3493082788 Mon Sep 17 00:00:00 2001 From: Dimitri Staessens Date: Wed, 18 Mar 2020 21:53:21 +0100 Subject: irmd: Fix cleanup of shm_flow_set The shm_flowset destroy was using the irmd pid, resulting in wrong unlinks. The irmd was not cleaning up the process table, resulting in shm leaks if there were still running processes on exit. Signed-off-by: Dimitri Staessens Signed-off-by: Sander Vrijders --- src/irmd/main.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/irmd/main.c') diff --git a/src/irmd/main.c b/src/irmd/main.c index 940432f1..1c928dca 100644 --- a/src/irmd/main.c +++ b/src/irmd/main.c @@ -1780,6 +1780,13 @@ static void irm_fini(void) prog_entry_destroy(e); } + list_for_each_safe(p, h, &irmd.proc_table) { + struct proc_entry * e = list_entry(p, struct proc_entry, next); + list_del(&e->next); + e->state = PROC_INIT; /* sanitizer already joined */ + proc_entry_destroy(e); + } + registry_destroy(&irmd.registry); pthread_rwlock_unlock(&irmd.reg_lock); -- cgit v1.2.3