Fixes CID 1352687 uninitialized scalar field.

This commit is contained in:
Simon
2016-10-20 11:19:36 -07:00
parent b1c1a32b3a
commit b7727d8b3b

View File

@@ -26,7 +26,7 @@ public:
class NotePlaintext {
public:
uint64_t value;
uint64_t value = 0;
uint256 rho;
uint256 r;
boost::array<unsigned char, ZC_MEMO_SIZE> memo;