combine-diff: do not send NULL to printf

When we run combined diff from working tree (diff-files --cc),
we sent NULL to printf that is returned by find_unique_abbrev().

Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Junio C Hamano 2006-02-06 12:30:00 -08:00
parent 960c7021b3
commit 9843a1f6fd

View File

@ -623,6 +623,7 @@ int show_combined_diff(struct combine_diff_path *elem, int num_parent,
write_to_temp_file(ourtmp, result, size); write_to_temp_file(ourtmp, result, size);
} }
else { else {
/* Used by diff-tree to read from the working tree */
struct stat st; struct stat st;
int fd; int fd;
ourtmp = elem->path; ourtmp = elem->path;
@ -701,6 +702,11 @@ int show_combined_diff(struct combine_diff_path *elem, int num_parent,
show_hunks = make_hunks(sline, cnt, num_parent, dense); show_hunks = make_hunks(sline, cnt, num_parent, dense);
if (show_hunks) { if (show_hunks) {
const char *abb;
char null_abb[DEFAULT_ABBREV + 1];
memset(null_abb, '0', DEFAULT_ABBREV);
null_abb[DEFAULT_ABBREV] = 0;
if (header) { if (header) {
shown_header++; shown_header++;
puts(header); puts(header);
@ -713,13 +719,18 @@ int show_combined_diff(struct combine_diff_path *elem, int num_parent,
putchar('\n'); putchar('\n');
printf("index "); printf("index ");
for (i = 0; i < num_parent; i++) { for (i = 0; i < num_parent; i++) {
printf("%s%s", if (memcmp(elem->parent_sha1[i], null_sha1, 20))
i ? "," : "", abb = find_unique_abbrev(elem->parent_sha1[i],
find_unique_abbrev(elem->parent_sha1[i], DEFAULT_ABBREV);
DEFAULT_ABBREV)); else
abb = null_abb;
printf("%s%s", i ? "," : "", abb);
} }
printf("..%s\n", if (memcmp(elem->sha1, null_sha1, 20))
find_unique_abbrev(elem->sha1, DEFAULT_ABBREV)); abb = find_unique_abbrev(elem->sha1, DEFAULT_ABBREV);
else
abb = null_abb;
printf("..%s\n", abb);
dump_sline(sline, cnt, num_parent); dump_sline(sline, cnt, num_parent);
} }
if (ourtmp == ourtmp_buf) if (ourtmp == ourtmp_buf)