PR: 2813
Reported by: Constantine Sapuntzakis <csapuntz@gmail.com> Fix possible deadlock when decoding public keys.
This commit is contained in:
parent
5e145e54cc
commit
482f238069
2 changed files with 7 additions and 1 deletions
3
CHANGES
3
CHANGES
|
@ -54,6 +54,9 @@
|
||||||
|
|
||||||
Changes between 1.0.1c and 1.0.1d [xx XXX xxxx]
|
Changes between 1.0.1c and 1.0.1d [xx XXX xxxx]
|
||||||
|
|
||||||
|
*) Fix possible deadlock when decoding public keys.
|
||||||
|
[Steve Henson]
|
||||||
|
|
||||||
*) Don't use TLS 1.0 record version number in initial client hello
|
*) Don't use TLS 1.0 record version number in initial client hello
|
||||||
if renegotiating.
|
if renegotiating.
|
||||||
[Steve Henson]
|
[Steve Henson]
|
||||||
|
|
|
@ -175,12 +175,15 @@ EVP_PKEY *X509_PUBKEY_get(X509_PUBKEY *key)
|
||||||
CRYPTO_w_lock(CRYPTO_LOCK_EVP_PKEY);
|
CRYPTO_w_lock(CRYPTO_LOCK_EVP_PKEY);
|
||||||
if (key->pkey)
|
if (key->pkey)
|
||||||
{
|
{
|
||||||
|
CRYPTO_w_unlock(CRYPTO_LOCK_EVP_PKEY);
|
||||||
EVP_PKEY_free(ret);
|
EVP_PKEY_free(ret);
|
||||||
ret = key->pkey;
|
ret = key->pkey;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
{
|
||||||
key->pkey = ret;
|
key->pkey = ret;
|
||||||
CRYPTO_w_unlock(CRYPTO_LOCK_EVP_PKEY);
|
CRYPTO_w_unlock(CRYPTO_LOCK_EVP_PKEY);
|
||||||
|
}
|
||||||
CRYPTO_add(&ret->references, 1, CRYPTO_LOCK_EVP_PKEY);
|
CRYPTO_add(&ret->references, 1, CRYPTO_LOCK_EVP_PKEY);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
|
Loading…
Reference in a new issue