[PATCH 5/6] Annotate internal_error with the attribute noreturn
authorJustus Winter <4winter@informatik.uni-hamburg.de>
Mon, 24 Sep 2012 15:21:19 +0000 (17:21 +0200)
committerW. Trevor King <wking@tremily.us>
Fri, 7 Nov 2014 17:49:36 +0000 (09:49 -0800)
a8/af825b56d55e2974f5ccacddee76202502f4a6 [new file with mode: 0644]

diff --git a/a8/af825b56d55e2974f5ccacddee76202502f4a6 b/a8/af825b56d55e2974f5ccacddee76202502f4a6
new file mode 100644 (file)
index 0000000..eeb7f68
--- /dev/null
@@ -0,0 +1,123 @@
+Return-Path: <teythoon@jade-hamburg.de>\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 B8F40431FC0\r
+       for <notmuch@notmuchmail.org>; Mon, 24 Sep 2012 08:21:38 -0700 (PDT)\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 L-6Ze7C1mmwQ for <notmuch@notmuchmail.org>;\r
+       Mon, 24 Sep 2012 08:21:37 -0700 (PDT)\r
+Received: from mail.cryptobitch.de (cryptobitch.de [88.198.7.68])\r
+       (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))\r
+       (No client certificate requested)\r
+       by olra.theworths.org (Postfix) with ESMTPS id 056E0431FAF\r
+       for <notmuch@notmuchmail.org>; Mon, 24 Sep 2012 08:21:36 -0700 (PDT)\r
+Received: from mail.jade-hamburg.de (mail.jade-hamburg.de [85.183.11.228])\r
+       (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))\r
+       (No client certificate requested)\r
+       by mail.cryptobitch.de (Postfix) with ESMTPSA id B28075AB283\r
+       for <notmuch@notmuchmail.org>; Mon, 24 Sep 2012 17:21:35 +0200 (CEST)\r
+Received: by mail.jade-hamburg.de (Postfix, from userid 401)\r
+       id 1B0F0DF2A9; Mon, 24 Sep 2012 17:21:35 +0200 (CEST)\r
+Received: from thinkbox.jade-hamburg.de (mail.jade-hamburg.de [85.183.11.228])\r
+       (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits))\r
+       (No client certificate requested) (Authenticated sender: teythoon)\r
+       by mail.jade-hamburg.de (Postfix) with ESMTPSA id 0B627DF2A2;\r
+       Mon, 24 Sep 2012 17:21:32 +0200 (CEST)\r
+Received: from teythoon by thinkbox.jade-hamburg.de with local (Exim 4.80)\r
+       (envelope-from <teythoon@thinkbox.jade-hamburg.de>)\r
+       id 1TGATR-0007lJ-0x; Mon, 24 Sep 2012 17:21:29 +0200\r
+From: Justus Winter <4winter@informatik.uni-hamburg.de>\r
+To: notmuch@notmuchmail.org\r
+Subject: [PATCH 5/6] Annotate internal_error with the attribute noreturn\r
+Date: Mon, 24 Sep 2012 17:21:19 +0200\r
+Message-Id:\r
+ <1348500080-29726-5-git-send-email-4winter@informatik.uni-hamburg.de>\r
+X-Mailer: git-send-email 1.7.10.4\r
+In-Reply-To:\r
+ <1348500080-29726-1-git-send-email-4winter@informatik.uni-hamburg.de>\r
+References: <873927eb5i.fsf@convex-new.cs.unb.ca>\r
+       <1348500080-29726-1-git-send-email-4winter@informatik.uni-hamburg.de>\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: Mon, 24 Sep 2012 15:21:38 -0000\r
+\r
+Annotating functions that do not return with the noreturn attribute\r
+(which is understood by both gcc and clang) prevents static analyzers\r
+from generating false positives (internal_error is used to terminate\r
+the process and is used extensively in error handling code paths).\r
+\r
+Remove the return statement that was placed there to appease the\r
+compiler. Functions annotated with noreturn are not supposed to return\r
+any values.\r
+\r
+Signed-off-by: Justus Winter <4winter@informatik.uni-hamburg.de>\r
+---\r
+ util/error_util.c |    4 +---\r
+ util/error_util.h |    6 ++++--\r
+ 2 files changed, 5 insertions(+), 5 deletions(-)\r
+\r
+diff --git a/util/error_util.c b/util/error_util.c\r
+index 630d228..d6e60fc 100644\r
+--- a/util/error_util.c\r
++++ b/util/error_util.c\r
+@@ -24,7 +24,7 @@\r
\r
+ #include "error_util.h"\r
\r
+-int\r
++void\r
+ _internal_error (const char *format, ...)\r
+ {\r
+     va_list va_args;\r
+@@ -35,7 +35,5 @@ _internal_error (const char *format, ...)\r
+     vfprintf (stderr, format, va_args);\r
\r
+     exit (1);\r
+-\r
+-    return 1;\r
+ }\r
\r
+diff --git a/util/error_util.h b/util/error_util.h\r
+index bb15822..17c8727 100644\r
+--- a/util/error_util.h\r
++++ b/util/error_util.h\r
+@@ -23,14 +23,16 @@\r
\r
+ #include <talloc.h>\r
\r
++#include "function-attributes.h"\r
++\r
+ /* There's no point in continuing when we've detected that we've done\r
+  * something wrong internally (as opposed to the user passing in a\r
+  * bogus value).\r
+  *\r
+  * Note that PRINTF_ATTRIBUTE comes from talloc.h\r
+  */\r
+-int\r
+-_internal_error (const char *format, ...) PRINTF_ATTRIBUTE (1, 2);\r
++void\r
++_internal_error (const char *format, ...) PRINTF_ATTRIBUTE (1, 2) NORETURN_ATTRIBUTE;\r
\r
+ /* There's no point in continuing when we've detected that we've done\r
+  * something wrong internally (as opposed to the user passing in a\r
+-- \r
+1.7.10.4\r
+\r