Browse Source

start hunting the lucky-bug

svn:r1116
Roger Dingledine 21 years ago
parent
commit
598f8b5661
1 changed files with 5 additions and 1 deletions
  1. 5 1
      src/or/dns.c

+ 5 - 1
src/or/dns.c

@@ -336,8 +336,12 @@ static void dns_found_answer(char *address, uint32_t addr) {
     if(resolve->state == CACHE_STATE_FAILED) {
       if(connection_edge_end(pend->conn, END_STREAM_REASON_RESOLVEFAILED, NULL) < 0)
         log_fn(LOG_WARN,"1: I called connection_edge_end redundantly.");
-    } else
+    } else {
+      /* XXX should call assert_connection_ok here */
+      assert(pend->conn->type >= _CONN_TYPE_MIN);
+      assert(pend->conn->type <= _CONN_TYPE_MAX);
       connection_exit_connect(pend->conn);
+    }
     resolve->pending_connections = pend->next;
     free(pend);
   }