chiark / gitweb /
activate: fix uninitialized memory
[elogind.git] / src / activate / activate.c
index cf8c5cebdb98115c626283cff7f4eb9b50c383f4..b3ef428cee16c88ec5f8af7df835db32da5a42d7 100644 (file)
@@ -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, '='))