aboutsummaryrefslogtreecommitdiffstats
path: root/src/unistd/fexec.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-10-13 02:59:03 +0200
committerMattias Andrée <maandree@operamail.com>2015-10-13 02:59:03 +0200
commitad9066c272093fc16c55f142e844959cdba25804 (patch)
tree306847f6385522918526e434cce21c7690f059ad /src/unistd/fexec.c
parentc revision warnings for stdarg.h (diff)
downloadslibc-ad9066c272093fc16c55f142e844959cdba25804.tar.gz
slibc-ad9066c272093fc16c55f142e844959cdba25804.tar.bz2
slibc-ad9066c272093fc16c55f142e844959cdba25804.tar.xz
fix use of va_copy
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r--src/unistd/fexec.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/unistd/fexec.c b/src/unistd/fexec.c
index bc88c57..bf2c392 100644
--- a/src/unistd/fexec.c
+++ b/src/unistd/fexec.c
@@ -58,6 +58,7 @@ static void vexec(int fd, va_list argv, int fetch_envp)
for (i = 0; i < n; i++)
argv_[i] = va_arg(argv, char*);
+ va_end(args);
fexecve(fd, argv_, envp);
}