ソースを参照

Minor refactor

master
Arun Prakash Jana 5年前
コミット
04ab3751af
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: A75979F35C080412
1個のファイルの変更3行の追加6行の削除
  1. +3
    -6
      src/nnn.c

+ 3
- 6
src/nnn.c ファイルの表示

@@ -4252,16 +4252,13 @@ static int dentfill(char *path, struct entry **dents)
dir_blocks = 0;
buf = (char *)alloca(strlen(path) + NAME_MAX + 2);

if (fstatat(fd, path, &sb_path, 0) == -1) {
closedir(dirp);
printwarn(NULL);
return 0;
}
if (fstatat(fd, path, &sb_path, 0) == -1)
goto exit;

if (!ihashbmp) {
ihashbmp = calloc(1, HASH_OCTETS << 3);
if (!ihashbmp)
return 0;
goto exit;
} else
clear_hash();
}


読み込み中…
キャンセル
保存