diff options
author | Nick Mathewson <nickm@torproject.org> | 2015-12-15 14:00:08 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-12-15 14:00:08 -0500 |
commit | a56fb58d6e1e93b95e2a060b61f3d00eab95a298 (patch) | |
tree | bbd8ff0c79de7bcd05ce9c0ed15a41deb578635b /src/test/testing_common.c | |
parent | efc8b2dbbfa0659405edb1e388f1f84cb8023425 (diff) | |
download | tor-a56fb58d6e1e93b95e2a060b61f3d00eab95a298.tar.gz tor-a56fb58d6e1e93b95e2a060b61f3d00eab95a298.zip |
Fix some memory leaks in the unit tests
Diffstat (limited to 'src/test/testing_common.c')
-rw-r--r-- | src/test/testing_common.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/testing_common.c b/src/test/testing_common.c index 2ea158fddd..e20e9e6095 100644 --- a/src/test/testing_common.c +++ b/src/test/testing_common.c @@ -297,6 +297,7 @@ main(int c, const char **v) tor_free_all(0); dmalloc_log_unfreed(); #endif + crypto_global_cleanup(); if (have_failed) return 1; |