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

coverity#708569 Uninitialized scalar field

Change-Id: Ibe5ff56f9b068dd438ecd92f99fdd2a91b604165
üst 0825c92c
......@@ -49,8 +49,9 @@ private:
public:
LoginErrorInfo()
: m_nFlags( LOGINERROR_FLAG_MODIFY_USER_NAME ),
m_nRet( ERRCODE_BUTTON_CANCEL )
: m_nFlags(LOGINERROR_FLAG_MODIFY_USER_NAME)
, m_nRet(ERRCODE_BUTTON_CANCEL)
, m_bRecommendToOpenReadonly(false)
{
}
......
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