Fixes CID 1352599 unitialized scalar variable

This commit is contained in:
Simon 2016-10-20 11:35:51 -07:00
parent 43873535d4
commit 351b38fd5b
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ public:
// These contain trapdoors, values and other information
// that the recipient needs, including a memo field. It
// is encrypted using the scheme implemented in crypto/NoteEncryption.cpp
boost::array<ZCNoteEncryption::Ciphertext, ZC_NUM_JS_OUTPUTS> ciphertexts;
boost::array<ZCNoteEncryption::Ciphertext, ZC_NUM_JS_OUTPUTS> ciphertexts = {0};
// Random seed
uint256 randomSeed;