summaryrefslogtreecommitdiff
path: root/lotuswordpro
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2014-02-18 16:53:58 -0600
committerNorbert Thiebaud <nthiebaud@gmail.com>2014-02-18 17:41:07 -0600
commit6c5632257b589407a73c8ddcedf0ed8ba890e873 (patch)
tree5d91124124a90571a21f7f957c30387945f1a80b /lotuswordpro
parent66f51851754295b2bb858ce0059844a27337f328 (diff)
coverity#738732 Uninitialized scalar field
Change-Id: I3920d694fc667b2d0fc5c07d53d606a42002ce16
Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/source/filter/lwpmarker.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/lwpmarker.cxx b/lotuswordpro/source/filter/lwpmarker.cxx
index 8382cd57183a..3f1fa1717649 100644
--- a/lotuswordpro/source/filter/lwpmarker.cxx
+++ b/lotuswordpro/source/filter/lwpmarker.cxx
@@ -96,7 +96,9 @@ OUString LwpMarker::GetNamedProperty(OUString name)
return OUString(A2OUSTR(""));
}
-LwpStoryMarker::LwpStoryMarker(LwpObjectHeader &objHdr, LwpSvStream *pStrm):LwpMarker(objHdr,pStrm)
+LwpStoryMarker::LwpStoryMarker(LwpObjectHeader &objHdr, LwpSvStream *pStrm)
+ : LwpMarker(objHdr,pStrm)
+ , m_nFlag(0)
{
}