diff options
author | Andrea Shepard <andrea@persephoneslair.org> | 2012-09-12 16:31:08 -0700 |
---|---|---|
committer | Andrea Shepard <andrea@torproject.org> | 2012-10-08 03:06:09 -0700 |
commit | a9a75ee59a719f938b02d48c6df3db649cf32cb9 (patch) | |
tree | 86eae52d228366ea815d1faee20e4e6a68ad05b3 /src/or/main.c | |
parent | 72251385b07a4d6ed2f5d7d972d57a8deb899c4d (diff) | |
download | tor-a9a75ee59a719f938b02d48c6df3db649cf32cb9.tar.gz tor-a9a75ee59a719f938b02d48c6df3db649cf32cb9.zip |
Call channel_tls_free_all() and channel_free_all() from tor_free_all in main.c
Diffstat (limited to 'src/or/main.c')
-rw-r--r-- | src/or/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/or/main.c b/src/or/main.c index b87cf52edb..908e490741 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -2476,6 +2476,8 @@ tor_free_all(int postfork) circuit_free_all(); entry_guards_free_all(); pt_free_all(); + channel_tls_free_all(); + channel_free_all(); connection_free_all(); buf_shrink_freelists(1); memarea_clear_freelist(); |