If-guard to avoid null ptr deref in statem_srvr.c
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org> CLA: trivial (Merged from https://github.com/openssl/openssl/pull/3419)
This commit is contained in:
parent
a020f54c25
commit
fbaf2857cc
1 changed files with 2 additions and 1 deletions
|
@ -1444,7 +1444,8 @@ MSG_PROCESS_RETURN tls_process_client_hello(SSL *s, PACKET *pkt)
|
|||
err:
|
||||
ossl_statem_set_error(s);
|
||||
|
||||
OPENSSL_free(clienthello->pre_proc_exts);
|
||||
if (clienthello != NULL)
|
||||
OPENSSL_free(clienthello->pre_proc_exts);
|
||||
OPENSSL_free(clienthello);
|
||||
|
||||
return MSG_PROCESS_ERROR;
|
||||
|
|
Loading…
Reference in a new issue