[PATCH v2 2/5] compact: catch Xapian::Error consistently
authorTomi Ollila <tomi.ollila@iki.fi>
Wed, 13 Nov 2013 17:02:44 +0000 (19:02 +0200)
committerW. Trevor King <wking@tremily.us>
Fri, 7 Nov 2014 17:58:16 +0000 (09:58 -0800)
1c/1887d987a692ea7814f6386ff519a5d6fc5496 [new file with mode: 0644]

diff --git a/1c/1887d987a692ea7814f6386ff519a5d6fc5496 b/1c/1887d987a692ea7814f6386ff519a5d6fc5496
new file mode 100644 (file)
index 0000000..86651cb
--- /dev/null
@@ -0,0 +1,69 @@
+Return-Path: <too@guru-group.fi>\r
+X-Original-To: notmuch@notmuchmail.org\r
+Delivered-To: notmuch@notmuchmail.org\r
+Received: from localhost (localhost [127.0.0.1])\r
+       by olra.theworths.org (Postfix) with ESMTP id 840AE431FD0\r
+       for <notmuch@notmuchmail.org>; Wed, 13 Nov 2013 09:03:03 -0800 (PST)\r
+X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 0\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none]\r
+       autolearn=disabled\r
+Received: from olra.theworths.org ([127.0.0.1])\r
+       by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
+       with ESMTP id FzooEcyCI5sV for <notmuch@notmuchmail.org>;\r
+       Wed, 13 Nov 2013 09:02:56 -0800 (PST)\r
+Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34])\r
+       by olra.theworths.org (Postfix) with ESMTP id 035B1431FC7\r
+       for <notmuch@notmuchmail.org>; Wed, 13 Nov 2013 09:02:55 -0800 (PST)\r
+Received: by guru.guru-group.fi (Postfix, from userid 501)\r
+       id 6AE6A1000F2; Wed, 13 Nov 2013 19:02:51 +0200 (EET)\r
+From: Tomi Ollila <tomi.ollila@iki.fi>\r
+To: notmuch@notmuchmail.org\r
+Subject: [PATCH v2 2/5] compact: catch Xapian::Error consistently\r
+Date: Wed, 13 Nov 2013 19:02:44 +0200\r
+Message-Id: <1384362167-12740-3-git-send-email-tomi.ollila@iki.fi>\r
+X-Mailer: git-send-email 1.8.0\r
+In-Reply-To: <1384362167-12740-1-git-send-email-tomi.ollila@iki.fi>\r
+References: <1384362167-12740-1-git-send-email-tomi.ollila@iki.fi>\r
+Cc: tomi.ollila@iki.fi\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.13\r
+Precedence: list\r
+List-Id: "Use and development of the notmuch mail system."\r
+       <notmuch.notmuchmail.org>\r
+List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
+       <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
+List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
+List-Post: <mailto:notmuch@notmuchmail.org>\r
+List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
+List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
+       <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
+X-List-Received-Date: Wed, 13 Nov 2013 17:03:03 -0000\r
+\r
+catch Xapian::Error in compact code in lib/database.cc to be consistent\r
+with other code in addition to not making software crash on uncaught\r
+other Xapian error.\r
+---\r
+ lib/database.cc | 4 ++--\r
+ 1 file changed, 2 insertions(+), 2 deletions(-)\r
+\r
+diff --git a/lib/database.cc b/lib/database.cc\r
+index 3c008d6..3530cb6 100644\r
+--- a/lib/database.cc\r
++++ b/lib/database.cc\r
+@@ -918,8 +918,8 @@ notmuch_database_compact (const char *path,\r
+       compactor.add_source (xapian_path);\r
+       compactor.set_destdir (compact_xapian_path);\r
+       compactor.compact ();\r
+-    } catch (Xapian::InvalidArgumentError e) {\r
+-      fprintf (stderr, "Error while compacting: %s\n", e.get_msg().c_str());\r
++    } catch (const Xapian::Error &error) {\r
++      fprintf (stderr, "Error while compacting: %s\n", error.get_msg().c_str());\r
+       ret = NOTMUCH_STATUS_XAPIAN_EXCEPTION;\r
+       goto DONE;\r
+     }\r
+-- \r
+1.8.3.1\r
+\r