From eb2b9892065cf5b69400b98ca82e4e99a525eb29 Mon Sep 17 00:00:00 2001 From: Bernd Edlinger Date: Fri, 20 Apr 2018 15:45:06 +0200 Subject: Ensure the thread keys are always allocated in the same order Fixes: #5899 Reviewed-by: Rich Salz Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/5911) --- crypto/bio/b_addr.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'crypto/bio') diff --git a/crypto/bio/b_addr.c b/crypto/bio/b_addr.c index 9832c0c89c..abec7bb8db 100644 --- a/crypto/bio/b_addr.c +++ b/crypto/bio/b_addr.c @@ -603,7 +603,8 @@ static int addrinfo_wrap(int family, int socktype, DEFINE_RUN_ONCE_STATIC(do_bio_lookup_init) { - OPENSSL_init_crypto(0, NULL); + if (!OPENSSL_init_crypto(0, NULL)) + return 0; bio_lookup_lock = CRYPTO_THREAD_lock_new(); return bio_lookup_lock != NULL; } -- cgit v1.2.3