From a3d12f445ab17141c52a20bc53e6533a9410ccc9 Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Thu, 21 Jun 2012 12:05:06 +0200 Subject: fix a memory leak in key.cpp - add EC_KEY_free() in CKey::Reset() when pkey != NULL - init pkey with NULL in CKey constructor --- src/key.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/key.cpp b/src/key.cpp index 57ab842bc4..c943a38ea6 100644 --- a/src/key.cpp +++ b/src/key.cpp @@ -129,6 +129,8 @@ void CKey::SetCompressedPubKey() void CKey::Reset() { fCompressedPubKey = false; + if (pkey != NULL) + EC_KEY_free(pkey); pkey = EC_KEY_new_by_curve_name(NID_secp256k1); if (pkey == NULL) throw key_error("CKey::CKey() : EC_KEY_new_by_curve_name failed"); @@ -137,6 +139,7 @@ void CKey::Reset() CKey::CKey() { + pkey = NULL; Reset(); } -- cgit v1.2.3