[openssl] openssl-3.0 update
tomas at openssl.org
tomas at openssl.org
Fri Feb 4 07:59:42 UTC 2022
The branch openssl-3.0 has been updated
via 6e47da6363e9e32c14f0c3a750ca04cd189c85fe (commit)
from e2f06af9cfc59f5447ac645430cab1f9fa6a1071 (commit)
- Log -----------------------------------------------------------------
commit 6e47da6363e9e32c14f0c3a750ca04cd189c85fe
Author: Harry Sintonen <sintonen at iki.fi>
Date: Tue Feb 1 23:48:19 2022 +0200
Add missing CRYPTO_THREAD_cleanup_local of default_context_thread_local
CLA: trivial
Reviewed-by: Matt Caswell <matt at openssl.org>
Reviewed-by: Paul Dale <pauli at openssl.org>
Reviewed-by: Tomas Mraz <tomas at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/17622)
(cherry picked from commit 8e012cdc896ec6a98b45119b127b230cbbb6e93b)
-----------------------------------------------------------------------
Summary of changes:
crypto/context.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/crypto/context.c b/crypto/context.c
index a05009a3ef..b50761dd8f 100644
--- a/crypto/context.c
+++ b/crypto/context.c
@@ -156,6 +156,7 @@ DEFINE_RUN_ONCE_STATIC(default_context_do_init)
void ossl_lib_ctx_default_deinit(void)
{
context_deinit(&default_context_int);
+ CRYPTO_THREAD_cleanup_local(&default_context_thread_local);
}
static OSSL_LIB_CTX *get_thread_default_context(void)
More information about the openssl-commits
mailing list