diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-02-18 16:55:37 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-02-18 17:41:08 -0600 |
commit | f32015ccf6cca20f994c460223d4fa64768094e7 (patch) | |
tree | e10a51299738c2913c91e95ea4cfc7f0c2a20053 /lotuswordpro | |
parent | 6c5632257b589407a73c8ddcedf0ed8ba890e873 (diff) |
coverity#738733 Uninitialized scalar field
Change-Id: I45b38f9568a20d4717474b98392bdd07fedf8f4a
Diffstat (limited to 'lotuswordpro')
-rw-r--r-- | lotuswordpro/source/filter/lwpmarker.cxx | 6 |
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) { } |