Kaydet (Commit) 1c48041e authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud

coverity#708237: Unitialized scalar field

Change-Id: I2536a7a2310aaa95fba7891472f0afe58713014c
üst 0b5798ee
......@@ -2366,7 +2366,12 @@ void SmParser::Error(SmParseError eError)
SmParser::SmParser()
: m_aDotLoc( LanguageTag::convertToLocale( LANGUAGE_ENGLISH_US ) )
: m_nCurError( 0 )
, m_nBufferIndex( 0 )
, m_nTokenIndex( 0 )
, m_Row( 0 )
, m_nColOff( 0 )
, m_aDotLoc( LanguageTag::convertToLocale( LANGUAGE_ENGLISH_US ) )
{
bImportSymNames = m_bExportSymNames = false;
m_nLang = Application::GetSettings().GetUILanguageTag().getLanguageType();
......
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