diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2012-11-26 11:35:28 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2012-11-26 11:35:28 +0000 |
commit | d762ced298c35d58524433cacb08c5d0a7364f96 (patch) | |
tree | 7f731c0c5f69987139fd0e88554083ab8503630a /tmux.c | |
parent | 260419f48efccd1ca80cd00168ef2471e765e8b6 (diff) | |
download | rtmux-d762ced298c35d58524433cacb08c5d0a7364f96.tar.gz rtmux-d762ced298c35d58524433cacb08c5d0a7364f96.tar.bz2 rtmux-d762ced298c35d58524433cacb08c5d0a7364f96.zip |
Call realpath earlier on the socket directory path rather than on the
socket file path because the latter may not exist yet and in that case
realpath is allowed to fail. From Romain Francoise.
Diffstat (limited to 'tmux.c')
-rw-r--r-- | tmux.c | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -159,7 +159,7 @@ parseenvironment(void) char * makesocketpath(const char *label) { - char base[MAXPATHLEN], *path, *s; + char base[MAXPATHLEN], realbase[MAXPATHLEN], *path, *s; struct stat sb; u_int uid; @@ -183,7 +183,10 @@ makesocketpath(const char *label) return (NULL); } - xasprintf(&path, "%s/%s", base, label); + if (realpath(base, realbase) == NULL) + strlcpy(realbase, base, sizeof realbase); + + xasprintf(&path, "%s/%s", realbase, label); return (path); } @@ -384,8 +387,7 @@ main(int argc, char **argv) } } free(label); - if (realpath(path, socket_path) == NULL) - strlcpy(socket_path, path, sizeof socket_path); + strlcpy(socket_path, path, sizeof socket_path); free(path); /* Set process title. */ |