From 306adfc8bdfd59c6c90d616c24404208f4516f12 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 12 Apr 2004 05:27:38 +0000 Subject: Fix two dumb leaks in crypto.c svn:r1592 --- src/common/crypto.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/common/crypto.c b/src/common/crypto.c index 278fe1ded..88330892b 100644 --- a/src/common/crypto.c +++ b/src/common/crypto.c @@ -351,6 +351,7 @@ int crypto_pk_read_public_key_from_string(crypto_pk_env_t *env, const char *src, if (env->key) RSA_free(env->key); env->key = PEM_read_bio_RSAPublicKey(b, NULL, NULL, NULL); + BIO_free(b); if(!env->key) return -1; @@ -708,6 +709,7 @@ int crypto_pk_get_digest(crypto_pk_env_t *pk, char *digest_out) free(buf); return -1; } + free(buf); return 0; } -- cgit v1.2.3