Commit 4dde69a6 authored by Nick Mathewson's avatar Nick Mathewson 🤹
Browse files

Merge remote branch 'origin/maint-0.2.2'

parents c42bd529 ab418447
Loading
Loading
Loading
Loading

changes/bug2757

0 → 100644
+6 −0
Original line number Diff line number Diff line
  - Minor bugfixes
    o Avoid a double-mark-for-free warning when failing to attach a
      transparent proxy connection.  (We thought we had fixed this in
      0.2.2.23-alpha, but it turns out our fix was checking the wrong
      connection.)  Fixes bug 2757; bugfix on 0.1.2.1-alpha (the original
      bug) and 0.2.2.23-alpha (the incorrect fix).
+1 −1
Original line number Diff line number Diff line
@@ -1221,7 +1221,7 @@ connection_handle_listener_read(connection_t *conn, int new_type)
  }

  if (connection_init_accepted_conn(newconn, conn->type) < 0) {
    if (! conn->marked_for_close)
    if (! newconn->marked_for_close)
      connection_mark_for_close(newconn);
    return 0;
  }