[tor-commits] [tor/master] Mark some unreachable code in compat_winthreads.c as unreachable
nickm at torproject.org
nickm at torproject.org
Thu Oct 19 17:22:50 UTC 2017
commit 09562421589c055a6cb49c802a248f727390d158
Author: Nick Mathewson <nickm at torproject.org>
Date: Thu Oct 19 13:21:48 2017 -0400
Mark some unreachable code in compat_winthreads.c as unreachable
---
src/common/compat_winthreads.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/common/compat_winthreads.c b/src/common/compat_winthreads.c
index 50a3c498c..122e0f016 100644
--- a/src/common/compat_winthreads.c
+++ b/src/common/compat_winthreads.c
@@ -48,10 +48,12 @@ void
spawn_exit(void)
{
_endthread();
+ // LCOV_EXCL_START
//we should never get here. my compiler thinks that _endthread returns, this
//is an attempt to fool it.
tor_assert(0);
_exit(0);
+ // LCOV_EXCL_STOP
}
void
More information about the tor-commits
mailing list