1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-11-27 13:21:11 +03:00

crypto: fix potential memory leak in ECDH

This commit is contained in:
Aris Adamantiadis
2015-09-21 15:01:37 +02:00
parent 747e7d05db
commit 73d8c919b7

View File

@@ -160,6 +160,10 @@ void crypto_free(struct ssh_crypto_struct *crypto){
#ifdef HAVE_ECDH
SAFE_FREE(crypto->ecdh_client_pubkey);
SAFE_FREE(crypto->ecdh_server_pubkey);
if(crypto->ecdh_privkey != NULL){
EC_KEY_free(crypto->ecdh_privkey);
crypto->ecdh_privkey = NULL;
}
#endif
if(crypto->session_id != NULL){
memset(crypto->session_id, '\0', crypto->digest_len);