From: svost Date: Sun, 27 Sep 2015 08:04:24 +0000 (+0300) Subject: Member variable 'CKey::fCompressedPubKey' is not assigned a value in 'CKey::operator=' X-Git-Tag: nvc-v0.5.5~80^2 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=6ebe0b8674ec44ae9ec6fcfbb272a3b53c6e2466 Member variable 'CKey::fCompressedPubKey' is not assigned a value in 'CKey::operator=' --- diff --git a/src/key.cpp b/src/key.cpp index 6239ba5..e50a3bc 100644 --- a/src/key.cpp +++ b/src/key.cpp @@ -201,6 +201,7 @@ CKey& CKey::operator=(const CKey& b) if (!EC_KEY_copy(pkey, b.pkey)) throw key_error("CKey::operator=(const CKey&) : EC_KEY_copy failed"); fSet = b.fSet; + fCompressedPubKey = b.fCompressedPubKey; return (*this); }