From: René Scharfe Date: Sat, 24 Oct 2015 12:23:20 +0000 (+0200) Subject: daemon: plug memory leak X-Git-Tag: v2.6.3~1^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b1b49ff8d42a21ade6a72b40a147fd3eaff3db8d;p=thirdparty%2Fgit.git daemon: plug memory leak Call child_process_clear() when a child ends to release the memory allocated for its environment. This is necessary because unlike all other users of start_command() we don't call finish_command(), which would have taken care of that for us. This leak was introduced by f063d38b (daemon: use cld->env_array when re-spawning). Signed-off-by: Rene Scharfe Signed-off-by: Junio C Hamano --- diff --git a/daemon.c b/daemon.c index 4be10914e6..385934d46e 100644 --- a/daemon.c +++ b/daemon.c @@ -802,6 +802,7 @@ static void check_dead_children(void) /* remove the child */ *cradle = blanket->next; live_children--; + child_process_clear(&blanket->cld); free(blanket); } else cradle = &blanket->next;