]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Mark an abort() as unreachable.
authorNick Mathewson <nickm@torproject.org>
Thu, 16 Jun 2016 19:53:05 +0000 (15:53 -0400)
committerNick Mathewson <nickm@torproject.org>
Thu, 16 Jun 2016 19:53:05 +0000 (15:53 -0400)
src/common/util.c

index a80d96ac9b2996afbd8f320bd4027347c12a33f8..2f7cc4f8929f6fb2758935c7bbc74711c928679a 100644 (file)
@@ -3795,7 +3795,7 @@ format_number_sigsafe(unsigned long x, char *buf, int buf_len,
 
   /* NOT tor_assert; see above. */
   if (cp != buf) {
-    abort();
+    abort(); // LCOV_EXCL_LINE
   }
 
   return len;