From 13369afc225fd435b7d3649b048e7233341f292a Mon Sep 17 00:00:00 2001 From: svost Date: Fri, 16 Oct 2015 23:05:12 +0300 Subject: [PATCH] Fix: member variable fCompressedPubKey is not initialized in the constructor. Also to check: CCrypter chKey chIV CAccountingEntry nEntryNo CDBEnv fDetachDB CBatchScanner deleted foundValue --- src/key.cpp | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) 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) -- 1.7.1