Avoid checking for deleted entries (starting with '-') in index_gc().

This commit is contained in:
default 2023-06-18 19:09:37 +02:00
parent 98d49bab25
commit 0a6a3a0a9a

2
data.c
View File

@ -391,7 +391,7 @@ int index_gc(const char *fn)
while (fgets(line, sizeof(line), i) != NULL) {
line[32] = '\0';
if (object_here_by_md5(line))
if (line[0] != '-' && object_here_by_md5(line))
fprintf(o, "%s\n", line);
else
gc++;