summaryrefslogtreecommitdiff
path: root/libc/unistd/execl.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-11-24 06:19:23 +0000
committerEric Andersen <andersen@codepoet.org>2001-11-24 06:19:23 +0000
commit614b87de55e550d7b07709124a38f23b2f54a35a (patch)
tree29714125a1d3abeb50911b0d9c5fb9e623de2fca /libc/unistd/execl.c
parent88e814e997c9bc4fd633583d4d6d4779c5b18cfb (diff)
Silly us. Don't try to free alloca'd memory.
-Erik
Diffstat (limited to 'libc/unistd/execl.c')
-rw-r--r--libc/unistd/execl.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/libc/unistd/execl.c b/libc/unistd/execl.c
index 9d49d5abd..b2c6dd5a0 100644
--- a/libc/unistd/execl.c
+++ b/libc/unistd/execl.c
@@ -42,8 +42,5 @@ int execl(__const char *path, __const char *arg, ...)
i = execve(path, (char *const *) argv, __environ);
- if (argv != shortargv)
- free(argv);
-
return i;
}