summaryrefslogtreecommitdiffabout
path: root/ui-patch.c
Side-by-side diff
Diffstat (limited to 'ui-patch.c') (more/less context) (show whitespace changes)
-rw-r--r--ui-patch.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/ui-patch.c b/ui-patch.c
index e7a010a..7ee2c41 100644
--- a/ui-patch.c
+++ b/ui-patch.c
@@ -87,9 +87,13 @@ void cgit_print_patch(char *hex, struct cacheitem *item)
cgit_print_error(fmt("Bad commit reference: %s", hex));
return;
}
info = cgit_parse_commit(commit);
+
+ if (commit->parents && commit->parents->item)
hashcpy(old_sha1, commit->parents->item->object.sha1);
+ else
+ hashclr(old_sha1);
patchname = fmt("%s.patch", sha1_to_hex(sha1));
cgit_print_snapshot_start("text/plain", patchname, item);
htmlf("From %s Mon Sep 17 00:00:00 2001\n", sha1_to_hex(sha1));