mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-02-15 11:53:04 +01:00
fix a memory leak in key.cpp
- add EC_KEY_free() in CKey::Reset() when pkey != NULL - init pkey with NULL in CKey constructor
This commit is contained in:
committed by
Luke Dashjr
parent
e3a9bc79a0
commit
33a656c4ae
@@ -130,6 +130,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");
|
||||
@@ -138,6 +140,7 @@ void CKey::Reset()
|
||||
|
||||
CKey::CKey()
|
||||
{
|
||||
pkey = NULL;
|
||||
Reset();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user