]> git.pld-linux.org Git - packages/mutt.git/blame - mutt-null_name.patch
- cleanup, flea.1 manpage unlikely to come back, don't bother keeping it here
[packages/mutt.git] / mutt-null_name.patch
CommitLineData
d26530dc
JR
1diff -urNp -x '*.orig' mutt-2.0.6.org/browser.c mutt-2.0.6/browser.c
2--- mutt-2.0.6.org/browser.c 2020-12-01 04:05:21.000000000 +0100
3+++ mutt-2.0.6/browser.c 2021-04-18 19:23:38.053342162 +0200
4@@ -475,6 +475,10 @@ static int examine_directory (MUTTMENU *
71f185a5 5
6 while ((de = readdir (dp)) != NULL)
7 {
8+ /* It can happen because of broken VFAT driver. */
9+ if (mutt_strcmp (de->d_name, "") == 0)
10+ continue;
11+
12 if (mutt_strcmp (de->d_name, ".") == 0)
13 continue; /* we don't need . */
d26530dc 14
This page took 0.031983 seconds and 4 git commands to generate.