diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-21 11:07:38 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-21 12:40:28 +0000 |
commit | c94f566aa40a8fbb8ca6bda714b42024d2767bfa (patch) | |
tree | a4ea388bc0945f11e4b6e84fa0270885d6408c60 | |
parent | 2484bf5804f5114c7afd0bf1516cbcf7a78eabaa (diff) |
coverity#738644 Uninitialized scalar field
Change-Id: Ic1c910cf2187405e966576bdba1ff606b23d993b
-rw-r--r-- | filter/source/msfilter/mstoolbar.cxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/filter/source/msfilter/mstoolbar.cxx b/filter/source/msfilter/mstoolbar.cxx index 73b8dde5c0a3..0d63c5130351 100644 --- a/filter/source/msfilter/mstoolbar.cxx +++ b/filter/source/msfilter/mstoolbar.cxx @@ -384,7 +384,10 @@ WString::Read( SvStream &rS ) return true; } -TBCExtraInfo::TBCExtraInfo() : idHelpContext( 0 ) +TBCExtraInfo::TBCExtraInfo() + : idHelpContext(0) + , tbcu(0) + , tbmg(0) { } |