diff options
author | Matt Johnston <matt@ucc.asn.au> | 2015-03-01 23:27:08 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2015-03-01 23:27:08 +0800 |
commit | 14ad6a597260106ab1ff818b89e6e5c53ea27473 (patch) | |
tree | 6bc4fcb9c4dcc2c00508cffd3c99a7855f116ab4 /signkey.c | |
parent | 9e66b5a9b1db60ca298eb76de413f2ecbeae2556 (diff) | |
parent | 3317916111c2fe05d18ff02fdde0f33cffa5d3e5 (diff) |
merge
Diffstat (limited to 'signkey.c')
-rw-r--r-- | signkey.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -187,6 +187,7 @@ int buf_get_pub_key(buffer *buf, sign_key *key, enum signkey_type *type) { if (eck) { if (*eck) { ecc_free(*eck); + m_free(*eck); *eck = NULL; } *eck = buf_get_ecdsa_pub_key(buf); @@ -255,6 +256,7 @@ int buf_get_priv_key(buffer *buf, sign_key *key, enum signkey_type *type) { if (eck) { if (*eck) { ecc_free(*eck); + m_free(*eck); *eck = NULL; } *eck = buf_get_ecdsa_priv_key(buf); @@ -355,18 +357,21 @@ void sign_key_free(sign_key *key) { #ifdef DROPBEAR_ECC_256 if (key->ecckey256) { ecc_free(key->ecckey256); + m_free(key->ecckey256); key->ecckey256 = NULL; } #endif #ifdef DROPBEAR_ECC_384 if (key->ecckey384) { ecc_free(key->ecckey384); + m_free(key->ecckey384); key->ecckey384 = NULL; } #endif #ifdef DROPBEAR_ECC_521 if (key->ecckey521) { ecc_free(key->ecckey521); + m_free(key->ecckey521); key->ecckey521 = NULL; } #endif |