From 7f1335c74c4ba0baac8649974e95f6e6f84f8632 Mon Sep 17 00:00:00 2001 From: Sergey Vlasov Date: Fri, 19 Aug 2005 22:28:35 +0400 Subject: [PATCH] git-rev-list: avoid crash on broken repository When following tags, check for parse_object() success and error out properly instead of segfaulting. Signed-off-by: Sergey Vlasov Signed-off-by: Junio C Hamano --- rev-list.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'rev-list.c') diff --git a/rev-list.c b/rev-list.c index ce5b8b2ad..2ed5e87e1 100644 --- a/rev-list.c +++ b/rev-list.c @@ -418,6 +418,8 @@ static struct commit *get_commit_reference(const char *name, unsigned int flags) if (tag_objects && !(object->flags & UNINTERESTING)) add_pending_object(object, tag->tag); object = parse_object(tag->tagged->sha1); + if (!object) + die("bad object %s", sha1_to_hex(tag->tagged->sha1)); } /* -- cgit v1.2.1