-rw-r--r-- | ui-patch.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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)); |