diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/filelist.c | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/src/filelist.c b/src/filelist.c index 9391ba0..47b0534 100644 --- a/src/filelist.c +++ b/src/filelist.c @@ -567,7 +567,8 @@ gib_list *feh_read_filelist(char *filename)  		/* Add it to the new list */  		list = gib_list_add_front(list, feh_file_new(s1));  	} -	fclose(fp); +	if (strcmp(filename, "/dev/stdin")) +		fclose(fp);  	return(list);  } | 
