1
0
mirror of https://github.com/git/git synced 2024-07-05 00:58:49 +00:00

[PATCH] git-fsck-cache: Gracefully handle non-commit IDs

Gracefully handle non-commit IDs instead of segfaulting.

Signed-off-by: Jonas Fonseca <fonseca@diku.dk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Jonas Fonseca 2005-04-29 20:00:40 -07:00 committed by Linus Torvalds
parent 87fec8fc9e
commit e1a1388d85

View File

@ -174,7 +174,14 @@ int main(int argc, char **argv)
continue;
if (!get_sha1_hex(arg, head_sha1)) {
struct object *obj = &lookup_commit(head_sha1)->object;
struct commit *commit = lookup_commit(head_sha1);
struct object *obj;
/* Error is printed by lookup_commit(). */
if (!commit)
continue;
obj = &commit->object;
obj->used = 1;
mark_reachable(obj, REACHABLE);
heads++;