From b7727d8b3b37bded0144363be5ffebc70b5e9f36 Mon Sep 17 00:00:00 2001 From: Simon Date: Thu, 20 Oct 2016 11:19:36 -0700 Subject: [PATCH] Fixes CID 1352687 uninitialized scalar field. --- src/zcash/Note.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zcash/Note.hpp b/src/zcash/Note.hpp index 8cf53e5b4..460e68f9d 100644 --- a/src/zcash/Note.hpp +++ b/src/zcash/Note.hpp @@ -26,7 +26,7 @@ public: class NotePlaintext { public: - uint64_t value; + uint64_t value = 0; uint256 rho; uint256 r; boost::array memo;