coverity#738694 Uninitialized scalar field
Change-Id: I07fc55507571183be9f81d2bf5a64adc8c8a110a
This commit is contained in:
parent
b08fa45ee4
commit
3c66022240
1 changed files with 7 additions and 2 deletions
|
@ -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()
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue