diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-10 12:41:09 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-10 14:43:28 +0000 |
commit | 3f9d796c41bd2a2590002dd417431c817d7b2290 (patch) | |
tree | b11f31777934d902d041385ff20cdb0c9e73d6e4 /tools | |
parent | 69f106cc35afc42bb00ff123982b31382149a354 (diff) |
coverity#708551 Uninitialized scalar field
Change-Id: I04c727bd48a6b2cad9ae545a05fcdd53472bf667
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/memtools/multisel.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/source/memtools/multisel.cxx b/tools/source/memtools/multisel.cxx index 50a2242ff177..0a85caa953d4 100644 --- a/tools/source/memtools/multisel.cxx +++ b/tools/source/memtools/multisel.cxx @@ -130,7 +130,9 @@ MultiSelection::MultiSelection( const MultiSelection& rOrig ) : MultiSelection::MultiSelection( const Range& rRange ): aTotRange(rRange), nCurSubSel(0), + nCurIndex(0), nSelCount(0), + bInverseCur(false), bCurValid(false), bSelectNew(false) { |