commit 29c9675bdeb5a63564e9a76dcd7162bef884b240
parent ab2e66ccdc4406a195d77b202bae21c17c634cb5
Author: Nick Mathewson <nickm@torproject.org>
Date: Sat, 14 Mar 2020 14:17:33 -0400
Fix memory leak in crypto_pk_asn1_decode_private.
(Deep, deep thanks to Taylor for reminding me to test this!)
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/src/lib/crypt_ops/crypto_rsa_openssl.c b/src/lib/crypt_ops/crypto_rsa_openssl.c
@@ -590,6 +590,7 @@ crypto_pk_asn1_decode_private(const char *str, size_t len, int max_bits)
if (max_bits >= 0 && rsa->n && BN_num_bits(rsa->n) > max_bits) {
#endif
log_info(LD_CRYPTO, "Private key longer than expected.");
+ RSA_free(rsa);
return NULL;
}
crypto_pk_t *result = crypto_new_pk_from_openssl_rsa_(rsa);