mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 11:51:27 +00:00
Fix listing files directly under /
This commit is contained in:
parent
b40e12ee9f
commit
12df1ab083
|
@ -6301,6 +6301,10 @@ static char *make_tmp_tree(char **paths, ssize_t entries, const char *prefix)
|
|||
/* Points right after the base tmp dir */
|
||||
tmp += 10;
|
||||
|
||||
/* handle the case where files are directly under / */
|
||||
if (!prefix[1] && (prefix[0] == '/'))
|
||||
len = 0;
|
||||
|
||||
if (!mkdtemp(tmpdir)) {
|
||||
free(tmpdir);
|
||||
|
||||
|
|
Loading…
Reference in a new issue