diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-10 12:54:06 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-10 14:43:29 +0000 |
commit | c9bb64be4f8ef475491b1fd13aff31daa5ff682b (patch) | |
tree | 822f580c6d01a84e1d46c70539ad0f60d5bfbc73 /sfx2/source/appl | |
parent | 0cd511153b4dc4fb3378fb04641e8c3c2ea8543b (diff) |
coverity#708146 Uninitialized scalar field
Change-Id: I5c1cb12572100b736152540d1453c7f25dc7a790
Diffstat (limited to 'sfx2/source/appl')
-rw-r--r-- | sfx2/source/appl/linksrc.cxx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sfx2/source/appl/linksrc.cxx b/sfx2/source/appl/linksrc.cxx index 7b29f37e0f73..ae0f2135fe0f 100644 --- a/sfx2/source/appl/linksrc.cxx +++ b/sfx2/source/appl/linksrc.cxx @@ -178,7 +178,12 @@ struct SvLinkSource_Impl m_xInputStreamToLoadFrom; sal_Bool m_bIsReadOnly; - SvLinkSource_Impl() : pTimer( 0 ), nTimeout( 3000 ) {} + SvLinkSource_Impl() + : pTimer(0) + , nTimeout(3000) + , m_bIsReadOnly(false) + { + } ~SvLinkSource_Impl(); void Closed(); |