From 6dd3806f7d1a337fb89e335e986e1fa4eab8340c Mon Sep 17 00:00:00 2001 From: rofl0r Date: Tue, 15 Sep 2020 19:09:43 +0100 Subject: [PATCH] childs.c: fix minor memory leak this would leak only once on program termination, so it's no big deal apart from having spurious reachable memory in valgrind logs. --- src/child.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/child.c b/src/child.c index 9d59d20..fb05cbe 100644 --- a/src/child.c +++ b/src/child.c @@ -217,6 +217,7 @@ oom: goto oom; } } + sblist_free(childs); } /*