summaryrefslogtreecommitdiff
path: root/src/or/main.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2005-02-11 01:41:19 +0000
committerNick Mathewson <nickm@torproject.org>2005-02-11 01:41:19 +0000
commit5d836c81408142519d3d5791b95c908c5240b3b7 (patch)
tree157b1b1985eec0248a9348d07cf1689f0b82fd55 /src/or/main.c
parentf672577bc6d32ecfe96582b463a83cac8eaac66f (diff)
downloadtor-5d836c81408142519d3d5791b95c908c5240b3b7.tar.gz
tor-5d836c81408142519d3d5791b95c908c5240b3b7.zip
Free tls resources on exit too
svn:r3615
Diffstat (limited to 'src/or/main.c')
-rw-r--r--src/or/main.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/or/main.c b/src/or/main.c
index ef1e7bf12f..184bfa3308 100644
--- a/src/or/main.c
+++ b/src/or/main.c
@@ -1320,6 +1320,7 @@ void tor_free_all(void)
connection_free_all();
config_free_all();
router_free_all_keys();
+ tor_tls_free_all();
/* stuff in main.c */
smartlist_free(closeable_connection_lst);
}