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

coverity#708335 Uninitialized scalar field

Change-Id: I14ce77fe16acdf6491ce49cdbe7550ef303f0ff9
üst bbe00527
......@@ -40,8 +40,17 @@ struct SvParser_Impl
rtl_TextToUnicodeConverter hConv;
rtl_TextToUnicodeContext hContext;
SvParser_Impl() :
nTokenValue(0), nToken(0), nSaveToken(0), hConv( 0 ), hContext( (rtl_TextToUnicodeContext)1 )
SvParser_Impl()
: nFilePos(0)
, nlLineNr(0)
, nlLinePos(0)
, nTokenValue(0)
, bTokenHasValue(false)
, nToken(0)
, nNextCh(0)
, nSaveToken(0)
, hConv( 0 )
, hContext( (rtl_TextToUnicodeContext)1 )
{
}
......
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