[tor-commits] [tor/maint-0.3.4] Fix another tor_assert(0) case

nickm at torproject.org nickm at torproject.org
Mon Oct 15 16:53:02 UTC 2018


commit 6b2ef2c5597a9e481939e04b556566c8b6283e46
Author: Nick Mathewson <nickm at torproject.org>
Date:   Mon Oct 15 12:52:48 2018 -0400

    Fix another tor_assert(0) case
---
 src/or/hs_intropoint.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/or/hs_intropoint.c b/src/or/hs_intropoint.c
index 8c6453e6f..9eaf57251 100644
--- a/src/or/hs_intropoint.c
+++ b/src/or/hs_intropoint.c
@@ -59,7 +59,7 @@ get_auth_key_from_cell(ed25519_public_key_t *auth_key_out,
   default:
     /* Getting here is really bad as it means we got a unknown cell type from
      * this file where every call has an hardcoded value. */
-    tor_assert(0); /* LCOV_EXCL_LINE */
+    tor_assert_unreached(); /* LCOV_EXCL_LINE */
   }
   tor_assert(key_array);
   tor_assert(auth_key_len == sizeof(auth_key_out->pubkey));
@@ -610,4 +610,3 @@ hs_intropoint_clear(hs_intropoint_t *ip)
   smartlist_free(ip->link_specifiers);
   memset(ip, 0, sizeof(hs_intropoint_t));
 }
-





More information about the tor-commits mailing list