Pārlūkot izejas kodu

Mark some unreachable code in compat_winthreads.c as unreachable

Nick Mathewson 8 gadi atpakaļ
vecāks
revīzija
0956242158
1 mainītis faili ar 2 papildinājumiem un 0 dzēšanām
  1. 2 0
      src/common/compat_winthreads.c

+ 2 - 0
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