diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-08-28 15:28:57 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-08-28 15:30:50 +0200 |
commit | 8bdd2877c4f959b0c4b93f3d9d1f465fb4960f3f (patch) | |
tree | ef7fed85ea38dde8929f15e02ff39c7e7b40da4a /src/wallet.h | |
parent | 11a899445edf3e07317eb312d3c1d9c71c06f618 (diff) |
Fix a few "Uninitialized scalar field" warnings
Fix a few warnings reported by Coverity.
None of these is critical, but making sure that class fields are
initialized can avoid heisenbugs.
Diffstat (limited to 'src/wallet.h')
-rw-r--r-- | src/wallet.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet.h b/src/wallet.h index 052da24609..b3878adb1e 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -905,6 +905,7 @@ public: strOtherAccount.clear(); strComment.clear(); nOrderPos = -1; + nEntryNo = 0; } IMPLEMENT_SERIALIZE |