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

coverity#738756: Unitialized scalar field

Change-Id: I4fc6f8db2a30564e6bac0052a51610245e9cf61c
üst 0c19977d
......@@ -112,7 +112,9 @@ void LwpCellList::Convert(XFCell * pCell, LwpTableLayout* /*pCellsMap*/)
}
}
LwpNumericValue::LwpNumericValue(LwpObjectHeader &objHdr, LwpSvStream* pStrm):LwpObject(objHdr, pStrm)
LwpNumericValue::LwpNumericValue(LwpObjectHeader &objHdr, LwpSvStream* pStrm)
: LwpObject(objHdr, pStrm)
, cNumber(0)
{}
LwpNumericValue::~LwpNumericValue()
......
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