[tor-commits] [tor/master] Call channel_tls_free_all() and channel_free_all() from tor_free_all in main.c

andrea at torproject.org andrea at torproject.org
Thu Oct 11 02:05:22 UTC 2012


commit a9a75ee59a719f938b02d48c6df3db649cf32cb9
Author: Andrea Shepard <andrea at persephoneslair.org>
Date:   Wed Sep 12 16:31:08 2012 -0700

    Call channel_tls_free_all() and channel_free_all() from tor_free_all in main.c
---
 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 b87cf52..908e490 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();





More information about the tor-commits mailing list