utrace: Fix environment initialization
authorMichal Sojka <sojkam1@fel.cvut.cz>
Tue, 12 Sep 2017 11:12:33 +0000 (13:12 +0200)
committerJohn Crispin <john@phrozen.org>
Thu, 28 Sep 2017 06:26:56 +0000 (08:26 +0200)
We want to copy the existing environment instead of the new one to
itself. Other bugs in this code are fixed in the next commit.

Signed-off-by: Michal Sojka <sojkam1@fel.cvut.cz>
trace/trace.c

index fdffaba..04bf7a5 100644 (file)
@@ -186,7 +186,7 @@ int main(int argc, char **argv, char **envp)
                        ;
 
                _envp = calloc(envc, sizeof(char *));
-               memcpy(&_envp[1], _envp, envc * sizeof(char *));
+               memcpy(&_envp[1], envp, envc * sizeof(char *));
                *_envp = preload;
 
                ret = execve(_argv[0], _argv, _envp);