From: Lennart Poettering Date: Wed, 6 Nov 2013 22:58:43 +0000 (+0100) Subject: activate: fix uninitialized memory X-Git-Tag: v209~1598 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=5b84559a76f30755019d6a0e6b2ccc9bbe0b3c56;ds=sidebyside activate: fix uninitialized memory --- diff --git a/src/activate/activate.c b/src/activate/activate.c index cf8c5cebd..b3ef428ce 100644 --- a/src/activate/activate.c +++ b/src/activate/activate.c @@ -188,7 +188,7 @@ static int launch(char* name, char **argv, char **env, int fds) { length = strv_length(arg_environ); /* PATH, TERM, HOME, USER, LISTEN_FDS, LISTEN_PID, NULL */ - envp = new(char *, length + 7); + envp = new0(char *, length + 7); STRV_FOREACH(s, arg_environ) { if (strchr(*s, '='))