Kaydet (Commit) 7350da1d authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#708556 Uninitialized scalar field

Change-Id: Idf3cf19c9b95e2a1b21efbebd291d7bcd298dad4
üst 7e5f4575
......@@ -58,13 +58,14 @@ friend class ErrorInfo;
};
EDcrData::EDcrData()
: pFirstHdl(0)
, pFirstCtx(0)
, pDsp(0)
, bIsWindowDsp(false)
, nNextDcr(0)
{
for(sal_uInt16 n=0;n<ERRCODE_DYNAMIC_COUNT;n++)
ppDcr[n]=0;
nNextDcr=0;
pFirstHdl=0;
pDsp=0;
pFirstCtx=0;
}
EDcrData *EDcrData::GetData()
......
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