diff options
Diffstat (limited to '')
-rw-r--r-- | src/unistd/execat.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/unistd/execat.c b/src/unistd/execat.c index e244812..a90fffb 100644 --- a/src/unistd/execat.c +++ b/src/unistd/execat.c @@ -66,6 +66,7 @@ static void vexecat(int dirfd, const char* file, va_list argv, int fetch_envp, i for (i = 0; i < n; i++) argv_[i] = va_arg(argv, char*); + va_end(args); (void)(use_path ? execvpeat : execveat)(dirfd, file, argv_, envp, flags); } |