mirror of
https://github.com/openssl/openssl.git
synced 2025-04-24 20:51:14 +08:00
rl->enc_ctx must be non-NULL and cipher must be set
Otherwise ssl3_cipher() cannot work properly. Fixes Coverity CID 1509401 Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19027)
This commit is contained in:
parent
7b7ad9e578
commit
35bcac131c
@ -98,10 +98,8 @@ static int ssl3_cipher(OSSL_RECORD_LAYER *rl, SSL3_RECORD *inrecs, size_t n_recs
|
||||
return 0;
|
||||
|
||||
ds = rl->enc_ctx;
|
||||
if (rl->enc_ctx == NULL)
|
||||
enc = NULL;
|
||||
else
|
||||
enc = EVP_CIPHER_CTX_get0_cipher(rl->enc_ctx);
|
||||
if (ds == NULL || (enc = EVP_CIPHER_CTX_get0_cipher(ds)) == NULL)
|
||||
return 0;
|
||||
|
||||
provided = (EVP_CIPHER_get0_provider(enc) != NULL);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user