Ver código fonte

Fix crash on a broken USB

master
Arun Prakash Jana 6 anos atrás
pai
commit
0bc5d82d2f
Nenhuma chave conhecida encontrada para esta assinatura no banco de dados ID da chave GPG: A75979F35C080412
1 arquivos alterados com 3 adições e 3 exclusões
  1. +3
    -3
      src/nnn.c

+ 3
- 3
src/nnn.c Ver arquivo

@@ -2845,8 +2845,8 @@ static int dentfill(char *path, struct entry **dents)
}

dp = readdir(dirp);
// if (!dp) /* We have opened the dir, at least . would be returned */
// goto exit;
if (!dp)
goto exit;

if (cfg.blkorder || dp->d_type == DT_UNKNOWN) {
/*
@@ -3007,7 +3007,7 @@ static int dentfill(char *path, struct entry **dents)
++n;
} while ((dp = readdir(dirp)));

//exit:
exit:
/* Should never be null */
if (closedir(dirp) == -1) {
dentfree();


Carregando…
Cancelar
Salvar