Git development
 help / color / mirror / Atom feed
* [PATCH] commit: fix a segfault when displaying a commit with unreachable parents
@ 2006-10-11 23:16 Eric Wong
  0 siblings, 0 replies; only message in thread
From: Eric Wong @ 2006-10-11 23:16 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: git, Eric Wong

I was running git show on various commits found by fsck-objects
when I found this bug.  Since find_unique_abbrev() cannot find
an abbreviation for an object not in the database, it will
return NULL, which is bad to run strlen() on.  So instead, we'll
just display the unabbreviated sha1 that we referenced in the
commit.

I'm not sure that this is the best 'fix' for it because the
commit I was trying to show was broken, but I don't think a
program should segfault even if the user tries to do something
stupid.

Signed-off-by: Eric Wong <normalperson@yhbt.net>
---
 commit.c |   11 +++++++----
 1 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/commit.c b/commit.c
index 5b6e082..a6d543e 100644
--- a/commit.c
+++ b/commit.c
@@ -548,10 +548,13 @@ static int add_merge_info(enum cmit_fmt 
 
 	while (parent) {
 		struct commit *p = parent->item;
-		const char *hex = abbrev
-			? find_unique_abbrev(p->object.sha1, abbrev)
-			: sha1_to_hex(p->object.sha1);
-		const char *dots = (abbrev && strlen(hex) != 40) ? "..." : "";
+		const char *hex = NULL;
+		const char *dots;
+		if (abbrev)
+			hex = find_unique_abbrev(p->object.sha1, abbrev);
+		if (!hex)
+			hex = sha1_to_hex(p->object.sha1);
+		dots = (abbrev && strlen(hex) != 40) ?  "..." : "";
 		parent = parent->next;
 
 		offset += sprintf(buf + offset, " %s%s", hex, dots);
-- 
1.4.3.rc2.g823d6-dirty

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2006-10-11 23:16 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-10-11 23:16 [PATCH] commit: fix a segfault when displaying a commit with unreachable parents Eric Wong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox