mirror of
https://github.com/openssl/openssl.git
synced 2025-04-06 20:20:50 +08:00
Fix memory leak when using PSK session files
We were not freeing the session created when loading a PSK session file. Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Bernd Edlinger <bernd.edlinger@hotmail.de> (Merged from https://github.com/openssl/openssl/pull/3855)
This commit is contained in:
parent
4549ed12ec
commit
9561e2a169
@ -3009,6 +3009,7 @@ int s_client_main(int argc, char **argv)
|
||||
print_stuff(bio_c_out, con, 1);
|
||||
SSL_free(con);
|
||||
}
|
||||
SSL_SESSION_free(psksess);
|
||||
#if !defined(OPENSSL_NO_NEXTPROTONEG)
|
||||
OPENSSL_free(next_proto.data);
|
||||
#endif
|
||||
|
@ -2104,6 +2104,7 @@ int s_server_main(int argc, char *argv[])
|
||||
ret = 0;
|
||||
end:
|
||||
SSL_CTX_free(ctx);
|
||||
SSL_SESSION_free(psksess);
|
||||
set_keylog_file(NULL, NULL);
|
||||
X509_free(s_cert);
|
||||
sk_X509_CRL_pop_free(crls, X509_CRL_free);
|
||||
|
Loading…
x
Reference in New Issue
Block a user