]> git.pld-linux.org Git - packages/mutt.git/blame_incremental - mutt-null_name.patch
- rediff patches
[packages/mutt.git] / mutt-null_name.patch
... / ...
CommitLineData
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 *
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 . */
14
This page took 0.025578 seconds and 4 git commands to generate.