git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3707 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
David Lawrence Ramsey 2006-06-30 14:28:32 +00:00
parent 8f975a11f0
commit 296ee153b0
1 changed files with 3 additions and 6 deletions

View File

@ -330,12 +330,9 @@ char *do_browser(char *path, DIR *dir)
/* If we've successfully opened a directory, and it's
* "..", save the current directory in prev_dir, so that
* we can select it later. */
} else if (strcmp(tail(filelist[selected]),
"..") == 0) {
prev_dir = mallocstrcpy(NULL, filelist[selected]);
prev_dir = mallocstrassn(prev_dir,
striponedir(prev_dir));
}
} else if (strcmp(tail(filelist[selected]), "..") == 0)
prev_dir = mallocstrcpy(NULL,
striponedir(filelist[selected]));
dir = opendir(filelist[selected]);
if (dir == NULL) {