From: CryptoManiac Date: Sat, 27 Nov 2021 11:55:05 +0000 (+0300) Subject: Fix copy constructor X-Git-Tag: nvc-v0.5.9~131 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=59b5e172f9fed2d27202168630550e21ef995105 Fix copy constructor --- diff --git a/src/bignum.h b/src/bignum.h index f1ec8d4..f37d7ed 100644 --- a/src/bignum.h +++ b/src/bignum.h @@ -69,6 +69,7 @@ public: CBigNum& operator=(const CBigNum& b) { + bn = BN_new(); if (!BN_copy(bn, b.bn)) throw bignum_error("CBigNum::operator= : BN_copy failed"); return (*this);