browser: elide another call of opendir()
And in the bargain show an error message when doing ^R unreadabledir ^T.master
parent
500fef8314
commit
a730b25ef9
|
@ -46,7 +46,7 @@ static size_t selected = 0;
|
||||||
* start browsing from. */
|
* start browsing from. */
|
||||||
char *do_browser(char *path)
|
char *do_browser(char *path)
|
||||||
{
|
{
|
||||||
char *retval = NULL, *newpath = NULL;
|
char *retval = NULL, *newpath = path;
|
||||||
int kbinput;
|
int kbinput;
|
||||||
char *present_name = NULL;
|
char *present_name = NULL;
|
||||||
/* The name of the currently selected file, or of the directory we
|
/* The name of the currently selected file, or of the directory we
|
||||||
|
@ -55,19 +55,13 @@ char *do_browser(char *path)
|
||||||
/* The number of the selected file before the current selected file. */
|
/* The number of the selected file before the current selected file. */
|
||||||
functionptrtype func;
|
functionptrtype func;
|
||||||
/* The function of the key the user typed in. */
|
/* The function of the key the user typed in. */
|
||||||
DIR *dir = opendir(path);
|
DIR *dir;
|
||||||
|
/* The directory whose contents we are showing. */
|
||||||
/* If we can't open the given directory, forget it. */
|
|
||||||
if (dir == NULL) {
|
|
||||||
beep();
|
|
||||||
free(path);
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Don't show a cursor in the file list. */
|
/* Don't show a cursor in the file list. */
|
||||||
curs_set(0);
|
curs_set(0);
|
||||||
blank_statusbar();
|
blank_statusbar();
|
||||||
bottombars(MBROWSER);
|
path = NULL;
|
||||||
|
|
||||||
read_directory_contents:
|
read_directory_contents:
|
||||||
/* We come here when we refresh or select a new directory. */
|
/* We come here when we refresh or select a new directory. */
|
||||||
|
|
Loading…
Reference in New Issue