Kaydet (Commit) c9bb64be authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#708146 Uninitialized scalar field

Change-Id: I5c1cb12572100b736152540d1453c7f25dc7a790
üst 0cd51115
......@@ -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();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment