]> git.pld-linux.org Git - packages/mutt.git/blob - 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
1 diff -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.02383 seconds and 3 git commands to generate.