summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/lwpmarker.cxx
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2014-02-18 16:55:37 -0600
committerNorbert Thiebaud <nthiebaud@gmail.com>2014-02-18 17:41:08 -0600
commitf32015ccf6cca20f994c460223d4fa64768094e7 (patch)
treee10a51299738c2913c91e95ea4cfc7f0c2a20053 /lotuswordpro/source/filter/lwpmarker.cxx
parent6c5632257b589407a73c8ddcedf0ed8ba890e873 (diff)
coverity#738733 Uninitialized scalar field
Change-Id: I45b38f9568a20d4717474b98392bdd07fedf8f4a
Diffstat (limited to 'lotuswordpro/source/filter/lwpmarker.cxx')
-rw-r--r--lotuswordpro/source/filter/lwpmarker.cxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/lwpmarker.cxx b/lotuswordpro/source/filter/lwpmarker.cxx
index 3f1fa1717649..fd01102b06dc 100644
--- a/lotuswordpro/source/filter/lwpmarker.cxx
+++ b/lotuswordpro/source/filter/lwpmarker.cxx
@@ -70,7 +70,11 @@
#include "xfilter/xfplaceholder.hxx"
#include "xfilter/xfinputlist.hxx"
-LwpMarker::LwpMarker(LwpObjectHeader &objHdr, LwpSvStream *pStrm):LwpDLNFPVList(objHdr,pStrm)
+LwpMarker::LwpMarker(LwpObjectHeader &objHdr, LwpSvStream *pStrm)
+ : LwpDLNFPVList(objHdr,pStrm)
+ , m_nFlag(0)
+ , m_nPageNumber(0)
+ , m_nNeedUpdate(0)
{
}