diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-03-03 18:23:54 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-03-03 18:23:54 -0600 |
commit | d2eefbdb42bb1f0098c7dae0ec30d8459aacd66c (patch) | |
tree | e1ab3eba34e96546db292aa528d47bfc67e6bcee /lotuswordpro/source | |
parent | a7db7c5ee26355ab5dcdc7c4bf6a46f0151228c4 (diff) |
coverity#738738: Unitialized scalar field
Change-Id: I9ce08089eeafee24c98fc1b6c2799721517c039a
Diffstat (limited to 'lotuswordpro/source')
-rw-r--r-- | lotuswordpro/source/filter/lwppagelayout.cxx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lotuswordpro/source/filter/lwppagelayout.cxx b/lotuswordpro/source/filter/lwppagelayout.cxx index 1184ecf5ff8d..c9cedace9876 100644 --- a/lotuswordpro/source/filter/lwppagelayout.cxx +++ b/lotuswordpro/source/filter/lwppagelayout.cxx @@ -77,8 +77,12 @@ Mar 2005 Created #include "lwpglobalmgr.hxx" LwpPageLayout::LwpPageLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm) - : LwpLayout(objHdr, pStrm), m_pPrinterBinName(new LwpAtomHolder), - m_pPaperName(new LwpAtomHolder),m_pXFPageMaster(NULL) + : LwpLayout(objHdr, pStrm) + , m_pPrinterBinName(new LwpAtomHolder) + , m_nPrinterBin(0) + , m_nBdroffset(0) + , m_pPaperName(new LwpAtomHolder) + , m_pXFPageMaster(NULL) { } |