aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2017-12-19 12:33:01 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2017-12-19 12:33:01 +0000
commit14c29814694efcc572c10cb62b2bdd74033c7f32 (patch)
treedf06170e0c93315c367b56040dece8d265af1d48
parentMerge pull request #2134 (diff)
downloadmonero-14c29814694efcc572c10cb62b2bdd74033c7f32.tar.xz
wallet2: fix use of uninitialized data
-rw-r--r--src/wallet/wallet2.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp
index 04c6ee236..87c5704f7 100644
--- a/src/wallet/wallet2.cpp
+++ b/src/wallet/wallet2.cpp
@@ -595,6 +595,7 @@ wallet2::wallet2(bool testnet, bool restricted):
m_min_output_value(0),
m_merge_destinations(false),
m_confirm_backlog(true),
+ m_confirm_backlog_threshold(0),
m_is_initialized(false),
m_restricted(restricted),
is_old_file_format(false),