summaryrefslogtreecommitdiffstats
path: root/crypto/async
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-03-02 16:52:43 +0000
committerMatt Caswell <matt@openssl.org>2016-03-02 17:23:42 +0000
commited49f43a0390217e1c2df0054fb7352523be9a58 (patch)
tree2110beb644b88a3cc3ce80c4495e59ef9189e535 /crypto/async
parent224905f8aaeac7fd81a49dc160a843c5fff60e6e (diff)
Ensure Async is deinited properly
The global thread local keys were not being deinited properly in async. Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/async')
-rw-r--r--crypto/async/async.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/crypto/async/async.c b/crypto/async/async.c
index 67e19c730f..b4ba561888 100644
--- a/crypto/async/async.c
+++ b/crypto/async/async.c
@@ -351,8 +351,6 @@ int async_init(void)
return 1;
}
-/* TODO: FIXME: This needs to be called by something!!! */
-void async_deinit(void);
void async_deinit(void)
{
CRYPTO_THREAD_cleanup_local(&ctxkey);