Merge pull request #71 from s9h869e5k5/fix-valgrind-warnings

Avoid valgrind warning.
This commit is contained in:
miguelfreitas 2014-01-15 08:29:04 -08:00
commit 194d17cd46

View File

@ -98,6 +98,7 @@ public:
nMasterKeyMaxID = 0;
pwalletdbEncryption = NULL;
nOrderPosNext = 0;
nTimeFirstKey = 0;
}
CWallet(std::string strWalletFileIn)
{
@ -108,6 +109,7 @@ public:
nMasterKeyMaxID = 0;
pwalletdbEncryption = NULL;
nOrderPosNext = 0;
nTimeFirstKey = 0;
}
std::map<uint256, CWalletTx> mapWallet;