Coverity: Fixes minor uninitialised constructor values issue.

This commit is contained in:
Bill King
2010-06-21 15:02:01 +10:00
parent 09228344e5
commit 6f5bf29e71

View File

@@ -107,7 +107,13 @@ void ProFileParser::initialize()
}
ProFileParser::ProFileParser(ProFileCache *cache, ProFileParserHandler *handler)
: m_cache(cache)
: m_lineNo(0)
, m_state(StNew)
, m_markLine(0)
, m_canElse(false)
, m_invert(false)
, m_operator(NoOperator)
, m_cache(cache)
, m_handler(handler)
{
// So that single-threaded apps don't have to call initialize() for now.