[PATCH] git-archimport does not cope with empty summaries

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



I got this while importing bonzini@xxxxxxxxxxxxxx/lightning--stable--1.2 (archive available at http://www.inf.unisi.ch/phd/bonzini/webdav/bonzini@xxxxxxxxxxxxxx via webdav).

The patch seems pretty obvious to me:

2007-02-27  Paolo Bonzini  <bonzini@xxxxxxx>

        * git-archimport (parselog): Cope with an empty summary.

--- /usr/bin/git-archimport     2007-01-09 21:15:39.000000000 +0100
+++ ./git-archimport    2007-02-27 14:28:33.000000000 +0100
@@ -780,7 +780,11 @@
     }

     # post-processing:
-    $ps->{summary} = join("\n",@{$ps->{summary}})."\n";
+    if (defined $ps->{summary}) {
+        $ps->{summary} = join("\n",@{$ps->{summary}})."\n";
+    } else {
+        $ps->{summary} = "empty summary\n";
+    }
     $ps->{message} = join("\n",@$log);

     # skip Arch control files, unescape pika-escaped files
-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html

[Index of Archives]     [Linux Kernel Development]     [Gcc Help]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [V4L]     [Bugtraq]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]     [Fedora Users]