diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-08-28 15:28:57 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-08-28 15:30:50 +0200 |
| commit | 8bdd2877c4f959b0c4b93f3d9d1f465fb4960f3f (patch) | |
| tree | ef7fed85ea38dde8929f15e02ff39c7e7b40da4a /src/wallet.h | |
| parent | qt/splashscreen: #include version.h (diff) | |
| download | discoin-8bdd2877c4f959b0c4b93f3d9d1f465fb4960f3f.tar.xz discoin-8bdd2877c4f959b0c4b93f3d9d1f465fb4960f3f.zip | |
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 052da2460..b3878adb1 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -905,6 +905,7 @@ public: strOtherAccount.clear(); strComment.clear(); nOrderPos = -1; + nEntryNo = 0; } IMPLEMENT_SERIALIZE |