1
0
mirror of https://github.com/git/git.git synced 2024-10-20 21:38:38 +02:00

Merge branch 'jc/maint-fsck-fwrite-size-check' into maint

* jc/maint-fsck-fwrite-size-check:
  fsck: do not abort upon finding an empty blob
This commit is contained in:
Junio C Hamano 2011-10-15 20:46:38 -07:00
commit d7b7dd3849

@ -231,12 +231,9 @@ static void check_unreachable_object(struct object *obj)
unsigned long size;
char *buf = read_sha1_file(obj->sha1,
&type, &size);
if (buf) {
if (fwrite(buf, size, 1, f) != 1)
die_errno("Could not write '%s'",
filename);
free(buf);
}
if (buf && fwrite(buf, 1, size, f) != size)
die_errno("Could not write '%s'", filename);
free(buf);
} else
fprintf(f, "%s\n", sha1_to_hex(obj->sha1));
if (fclose(f))