From 6ebe0b8674ec44ae9ec6fcfbb272a3b53c6e2466 Mon Sep 17 00:00:00 2001 From: svost Date: Sun, 27 Sep 2015 11:04:24 +0300 Subject: [PATCH] Member variable 'CKey::fCompressedPubKey' is not assigned a value in 'CKey::operator=' --- src/key.cpp | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) 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); } -- 1.7.1