diff options
author | Nick Mathewson <nickm@torproject.org> | 2015-11-17 09:06:47 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-11-17 09:06:47 -0500 |
commit | 58edf92678019c0e69c043976b2af06551d83ed3 (patch) | |
tree | 906791966a00ee5857f965b3e5a4cd75492cecfc /src/or/main.c | |
parent | 84b3350c83a995a7668c16cb06ae069664dc0633 (diff) | |
download | tor-58edf92678019c0e69c043976b2af06551d83ed3.tar.gz tor-58edf92678019c0e69c043976b2af06551d83ed3.zip |
Free pending_entry_connections on shutdown.
Diffstat (limited to 'src/or/main.c')
-rw-r--r-- | src/or/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/or/main.c b/src/or/main.c index 0fe818d74f..b5c1b8ba69 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -3084,6 +3084,7 @@ tor_free_all(int postfork) channel_tls_free_all(); channel_free_all(); connection_free_all(); + connection_edge_free_all(); scheduler_free_all(); memarea_clear_freelist(); nodelist_free_all(); |