From: svost Date: Fri, 16 Oct 2015 20:05:12 +0000 (+0300) Subject: Fix: member variable fCompressedPubKey is not initialized in the constructor. X-Git-Tag: nvc-v0.5.5~10^2^2~2 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=13369afc225fd435b7d3649b048e7233341f292a Fix: member variable fCompressedPubKey is not initialized in the constructor. Also to check: CCrypter chKey chIV CAccountingEntry nEntryNo CDBEnv fDetachDB CBatchScanner deleted foundValue --- diff --git a/src/key.cpp b/src/key.cpp index e50a3bc..e95fb17 100644 --- a/src/key.cpp +++ b/src/key.cpp @@ -194,6 +194,7 @@ CKey::CKey(const CKey& b) if (pkey == NULL) throw key_error("CKey::CKey(const CKey&) : EC_KEY_dup failed"); fSet = b.fSet; + fCompressedPubKey = b.fCompressedPubKey; } CKey& CKey::operator=(const CKey& b)