mirror of
https://github.com/openssl/openssl.git
synced 2025-04-06 20:20:50 +08:00
remove unnecessary NULL checks
Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
parent
bc9567cdc9
commit
85fb6fdaed
@ -477,8 +477,7 @@ void ssl3_cleanup_key_block(SSL *s)
|
||||
void ssl3_init_finished_mac(SSL *s)
|
||||
{
|
||||
BIO_free(s->s3->handshake_buffer);
|
||||
if (s->s3->handshake_dgst)
|
||||
ssl3_free_digest_list(s);
|
||||
ssl3_free_digest_list(s);
|
||||
s->s3->handshake_buffer = BIO_new(BIO_s_mem());
|
||||
(void)BIO_set_close(s->s3->handshake_buffer, BIO_CLOSE);
|
||||
}
|
||||
|
@ -2906,8 +2906,7 @@ void ssl3_free(SSL *s)
|
||||
OPENSSL_clear_free(s->s3->tmp.pms, s->s3->tmp.pmslen);
|
||||
OPENSSL_free(s->s3->tmp.peer_sigalgs);
|
||||
BIO_free(s->s3->handshake_buffer);
|
||||
if (s->s3->handshake_dgst)
|
||||
ssl3_free_digest_list(s);
|
||||
ssl3_free_digest_list(s);
|
||||
OPENSSL_free(s->s3->alpn_selected);
|
||||
|
||||
#ifndef OPENSSL_NO_SRP
|
||||
@ -2943,9 +2942,7 @@ void ssl3_clear(SSL *s)
|
||||
init_extra = s->s3->init_extra;
|
||||
BIO_free(s->s3->handshake_buffer);
|
||||
s->s3->handshake_buffer = NULL;
|
||||
if (s->s3->handshake_dgst) {
|
||||
ssl3_free_digest_list(s);
|
||||
}
|
||||
ssl3_free_digest_list(s);
|
||||
|
||||
if (s->s3->alpn_selected) {
|
||||
OPENSSL_free(s->s3->alpn_selected);
|
||||
|
Loading…
x
Reference in New Issue
Block a user