From d45b0f627409c6646c65012bce6819dae7f9db1b Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Fri, 1 Jan 2016 17:50:30 +0100 Subject: m MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/unistd/execat.c | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'src/unistd/execat.c') diff --git a/src/unistd/execat.c b/src/unistd/execat.c index 87519e4..0005877 100644 --- a/src/unistd/execat.c +++ b/src/unistd/execat.c @@ -34,6 +34,17 @@ struct stat { int st_mode; }; +/** + * The directory where all the process's file descriptors are available. + */ +#if defined(_LINUX_) +# define FD_PATH "/proc/self/fd" /* /dev/fd works but it is a symbolic link. */ +#else +# define FD_PATH "/dev/fd" +#endif + + + /** * The current environment variables. * @@ -415,11 +426,11 @@ int execveat(int dirfd, const char* path, char* const argv[], char* const envp[] return errno = ELOOP, -1; } - pathname = malloc(sizeof("/dev/fd//") + (3 * sizeof(int) + strlen(path)) * sizeof(char)); + pathname = malloc(sizeof(FD_PATH "//") + (3 * sizeof(int) + strlen(path)) * sizeof(char)); if (pathname == NULL) return -1; - sprintf(pathname, "/dev/fd/%i%s%s", dirfd, *path ? "/" : "", path); + sprintf(pathname, FD_PATH "/%i%s%s", dirfd, *path ? "/" : "", path); execve(pathname, argv, envp); saved_errno = errno; -- cgit v1.2.3-70-g09d2