From: Andrea Shepard Date: Wed, 12 Sep 2012 23:31:08 +0000 (-0700) Subject: Call channel_tls_free_all() and channel_free_all() from tor_free_all in main.c X-Git-Tag: tor-0.2.4.4-alpha~37^2~78 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a9a75ee59a719f938b02d48c6df3db649cf32cb9;p=thirdparty%2Ftor.git Call channel_tls_free_all() and channel_free_all() from tor_free_all in main.c --- 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();