fix various bugs in path and error handling in execvp/fexecve

This commit is contained in:
Rich Felker
2011-09-29 00:48:04 -04:00
parent 5f814682b4
commit 4b87736998
2 changed files with 31 additions and 20 deletions

View File

@ -1,10 +1,13 @@
#include <unistd.h>
#include <stdio.h>
#include <errno.h>
int fexecve(int fd, char *const argv[], char *const envp[])
{
static const char proc[] = "/proc/self/fd/%d";
char buf[sizeof proc + 3*sizeof(int)];
snprintf(buf, sizeof buf, proc, fd);
return execve(buf, argv, envp);
execve(buf, argv, envp);
if (errno == ENOENT) errno = EBADF;
return -1;
}