Kaydet (Commit) 8cb473cd authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud

coverity#738755: Unitialized scalar field

Change-Id: I3d320f09ddfa5ce40ac55317c92d7acecaec5db9
üst 41c440ba
......@@ -216,7 +216,10 @@ void LwpFolder::Parse(IXFStream* /*pOutputStream*/)
{
}
LwpDependent::LwpDependent(LwpObjectHeader &objHdr, LwpSvStream* pStrm):LwpDLVList(objHdr, pStrm)
LwpDependent::LwpDependent(LwpObjectHeader &objHdr, LwpSvStream* pStrm)
: LwpDLVList(objHdr, pStrm)
, cReferenceOffset(0)
, cFlags(0)
{}
LwpDependent::~LwpDependent()
......
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