Przeglądaj źródła

try to find the corrupt closeable_connection_lst entry early

svn:r3468
Roger Dingledine 20 lat temu
rodzic
commit
7ddeb7fae7
1 zmienionych plików z 1 dodań i 0 usunięć
  1. 1 0
      src/or/main.c

+ 1 - 0
src/or/main.c

@@ -181,6 +181,7 @@ add_connection_to_closeable_list(connection_t *conn)
 {
 {
   tor_assert(!smartlist_isin(closeable_connection_lst, conn));
   tor_assert(!smartlist_isin(closeable_connection_lst, conn));
   tor_assert(conn->marked_for_close);
   tor_assert(conn->marked_for_close);
+  tor_assert(conn->poll_index >= 0);
 
 
   smartlist_add(closeable_connection_lst, conn);
   smartlist_add(closeable_connection_lst, conn);
 }
 }