[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[or-cvs] Free tls resources on exit too



Update of /home/or/cvsroot/tor/src/or
In directory moria.mit.edu:/tmp/cvs-serv27241/src/or

Modified Files:
	main.c 
Log Message:
Free tls resources on exit too

Index: main.c
===================================================================
RCS file: /home/or/cvsroot/tor/src/or/main.c,v
retrieving revision 1.445
retrieving revision 1.446
diff -u -d -r1.445 -r1.446
--- main.c	11 Feb 2005 01:26:46 -0000	1.445
+++ main.c	11 Feb 2005 01:41:19 -0000	1.446
@@ -1320,6 +1320,7 @@
   connection_free_all();
   config_free_all();
   router_free_all_keys();
+  tor_tls_free_all();
   /* stuff in main.c */
   smartlist_free(closeable_connection_lst);
 }