From 73d8c919b7b6cc8f5936ff6adc0cafdd45cd393b Mon Sep 17 00:00:00 2001 From: Aris Adamantiadis Date: Mon, 21 Sep 2015 15:01:37 +0200 Subject: crypto: fix potential memory leak in ECDH --- src/wrapper.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/wrapper.c b/src/wrapper.c index c1dd4d03..b750702d 100644 --- a/src/wrapper.c +++ b/src/wrapper.c @@ -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); -- cgit