coverity#738694 Uninitialized scalar field

Change-Id: I07fc55507571183be9f81d2bf5a64adc8c8a110a
This commit is contained in:
Caolán McNamara 2014-04-04 14:12:58 +01:00
parent b08fa45ee4
commit 3c66022240

View file

@ -69,8 +69,13 @@
#include <osl/thread.h>
LwpDocument::LwpDocument(LwpObjectHeader& objHdr, LwpSvStream* pStrm)
: LwpDLNFPVList(objHdr, pStrm), m_pOwnedFoundry(NULL), m_pLnOpts(NULL)
{}
: LwpDLNFPVList(objHdr, pStrm)
, m_pOwnedFoundry(NULL)
, m_nFlags(0)
, m_nPersistentFlags(0)
, m_pLnOpts(NULL)
{
}
LwpDocument::~LwpDocument()
{