Quellcode durchsuchen

fix another rogue connection_free that was causing us troubles
there are no doubt more lurking.


svn:r3478

Roger Dingledine vor 20 Jahren
Ursprung
Commit
a7138f2535
1 geänderte Dateien mit 2 neuen und 3 gelöschten Zeilen
  1. 2 3
      src/or/circuitlist.c

+ 2 - 3
src/or/circuitlist.c

@@ -378,9 +378,8 @@ int _circuit_mark_for_close(circuit_t *circ) {
   while (circ->resolving_streams) {
   while (circ->resolving_streams) {
     conn = circ->resolving_streams;
     conn = circ->resolving_streams;
     circ->resolving_streams = conn->next_stream;
     circ->resolving_streams = conn->next_stream;
-    connection_dns_remove(conn); /* remove it from resolve lists */
+    if (!conn->marked_for_close)
-    log_fn(LOG_INFO,"Freeing resolving-conn.");
+      connection_mark_for_close(conn);
-    connection_free(conn);
   }
   }
   if (circ->p_conn)
   if (circ->p_conn)
     connection_send_destroy(circ->p_circ_id, circ->p_conn);
     connection_send_destroy(circ->p_circ_id, circ->p_conn);