commit 0a6a3a0a9a11f65fde3d171d4b615d6e207d5420
parent 98d49bab25c6d79d2bdda0f9ee7ae131b85114c0
Author: default <nobody@localhost>
Date: Sun, 18 Jun 2023 19:09:37 +0200
Avoid checking for deleted entries (starting with '-') in index_gc().
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/data.c b/data.c
@@ -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++;