summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/source/filter/lwptblcell.cxx
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2014-03-02 18:32:27 -0600
committerNorbert Thiebaud <nthiebaud@gmail.com>2014-03-02 18:40:45 -0600
commit8cb473cdf838072adcc8faa493c0cd049c056cb2 (patch)
tree7ef049997e89c13c5a7b413203c1a26b0d16f987 /lotuswordpro/source/filter/lwptblcell.cxx
parentcoverity#738756: Unitialized scalar field (diff)
downloadcore-8cb473cdf838072adcc8faa493c0cd049c056cb2.tar.gz
core-8cb473cdf838072adcc8faa493c0cd049c056cb2.zip
coverity#738755: Unitialized scalar field
Change-Id: I3d320f09ddfa5ce40ac55317c92d7acecaec5db9
Diffstat (limited to 'lotuswordpro/source/filter/lwptblcell.cxx')
-rw-r--r--lotuswordpro/source/filter/lwptblcell.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/lwptblcell.cxx b/lotuswordpro/source/filter/lwptblcell.cxx
index a2698f7da388..bb6d4c34857c 100644
--- a/lotuswordpro/source/filter/lwptblcell.cxx
+++ b/lotuswordpro/source/filter/lwptblcell.cxx
@@ -216,7 +216,10 @@ void LwpFolder::Parse(IXFStream* /*pOutputStream*/)
{
}
-LwpDependent::LwpDependent(LwpObjectHeader &objHdr, LwpSvStream* pStrm):LwpDLVList(objHdr, pStrm)
+LwpDependent::LwpDependent(LwpObjectHeader &objHdr, LwpSvStream* pStrm)
+ : LwpDLVList(objHdr, pStrm)
+ , cReferenceOffset(0)
+ , cFlags(0)
{}
LwpDependent::~LwpDependent()