Kaydet (Commit) 41cf0157 authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud

coverity#738717 Unitialized scalar field

Change-Id: I75baf0ccc602b7bb89f9bd0efaf2b06b89a231c9
üst f3cd7e51
......@@ -175,7 +175,11 @@ void LwpFribBookMark::RegisterStyle(LwpFoundry* pFoundry)
}
}
LwpFribBookMark::LwpFribBookMark(LwpPara* pPara ) : LwpFrib(pPara),m_pStart(NULL),m_pEnd(NULL)
LwpFribBookMark::LwpFribBookMark(LwpPara* pPara )
: LwpFrib(pPara)
, m_nType(0)
, m_pStart(NULL)
, m_pEnd(NULL)
{
}
......
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