1
1

Test for read error while reading the --exclude-from file

Fixes #171
Этот коммит содержится в:
Yorhel 2021-03-04 16:07:46 +01:00
родитель a216bc2d35
Коммит 9337cdc99e

Просмотреть файл

@ -68,8 +68,9 @@ int exclude_addfile(char *file) {
exclude_add(buf);
}
len = ferror(f);
fclose(f);
return 0;
return len;
}