diff options
Diffstat (limited to 'cmd-string.c')
-rw-r--r-- | cmd-string.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-string.c b/cmd-string.c index 1a380e50..9cb48466 100644 --- a/cmd-string.c +++ b/cmd-string.c @@ -332,7 +332,7 @@ cmd_string_expand_tilde(const char *s, size_t *p) home = NULL; if (cmd_string_getc(s, p) == '/') { - if ((home = getenv("HOME")) == NULL) { + if ((home = getenv("HOME")) == NULL || *home == '\0') { if ((pw = getpwuid(getuid())) != NULL) home = pw->pw_dir; } |