From: Zbigniew Jędrzejewski-Szmek Date: Sun, 31 Mar 2013 22:18:10 +0000 (-0400) Subject: activate: do not leak envp on error X-Git-Tag: v201~113 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=fff40a51ccbb02e8dec4ff2ee505bc84f75e445c;hp=fb93cf737549f2d5fce6cb76b1d5e8382c7537b8 activate: do not leak envp on error --- diff --git a/src/activate/activate.c b/src/activate/activate.c index a6e724857..3ea2470a1 100644 --- a/src/activate/activate.c +++ b/src/activate/activate.c @@ -137,6 +137,11 @@ static int open_sockets(int *epoll_fd, bool accept) { count ++; } + /** Note: we leak some fd's on error here. I doesn't matter + * much, since the program will exit immediately anyway, but + * would be a pain to fix. + */ + STRV_FOREACH(address, arg_listen) { log_info("Opening address %s", *address); @@ -166,7 +171,8 @@ static int open_sockets(int *epoll_fd, bool accept) { static int launch(char* name, char **argv, char **env, int fds) { unsigned n_env = 0, length; - char **envp = NULL, **s; + char _cleanup_strv_free_ **envp = NULL; + char **s; static const char* tocopy[] = {"TERM=", "PATH=", "USER=", "HOME="}; char _cleanup_free_ *tmp = NULL; unsigned i;