diff options
-rw-r--r-- | ui-diff.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ui-diff.c b/ui-diff.c index 7ec5701..999b6f3 100644 --- a/ui-diff.c +++ b/ui-diff.c | |||
@@ -35,7 +35,10 @@ static void header(unsigned char *sha1, char *path1, | |||
35 | unsigned char *sha2, char *path2) | 35 | unsigned char *sha2, char *path2) |
36 | { | 36 | { |
37 | char *abbrev1, *abbrev2; | 37 | char *abbrev1, *abbrev2; |
38 | 38 | if (is_null_sha1(sha1)) | |
39 | path1 = "dev/null"; | ||
40 | if (is_null_sha1(sha2)) | ||
41 | path2 = "dev/null"; | ||
39 | html("<tr><td>"); | 42 | html("<tr><td>"); |
40 | html("<div class='head'>"); | 43 | html("<div class='head'>"); |
41 | html("diff --git a/"); | 44 | html("diff --git a/"); |