summaryrefslogtreecommitdiff
path: root/lotuswordpro
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2014-03-02 18:36:52 -0600
committerNorbert Thiebaud <nthiebaud@gmail.com>2014-03-02 18:40:46 -0600
commite94cdddd560307d9aceb5f59a51cd0e809f72b69 (patch)
treedb693c17f1200f1f0ae69f65cd7edbabebf6de5a /lotuswordpro
parent3a9220adc0cfd4b6a7672e383bcbead0e1211aeb (diff)
coverity#738753: Unitialized scalar field
Change-Id: Ib540a9e2d478ce9be677735cefa238834bb9b13d
Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/source/filter/lwptblcell.cxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/lotuswordpro/source/filter/lwptblcell.cxx b/lotuswordpro/source/filter/lwptblcell.cxx
index 0a229e1027e4..154006cf4ff0 100644
--- a/lotuswordpro/source/filter/lwptblcell.cxx
+++ b/lotuswordpro/source/filter/lwptblcell.cxx
@@ -128,11 +128,14 @@ void LwpNumericValue::Read()
m_pObjStrm->SkipExtra();
}
- void LwpNumericValue::Parse(IXFStream* /*pOutputStream*/)
+
+void LwpNumericValue::Parse(IXFStream* /*pOutputStream*/)
{
}
- LwpRowList::LwpRowList(LwpObjectHeader &objHdr, LwpSvStream* pStrm):LwpDLVList(objHdr, pStrm)
+LwpRowList::LwpRowList(LwpObjectHeader &objHdr, LwpSvStream* pStrm)
+ : LwpDLVList(objHdr, pStrm)
+ , cRowID(0)
{}
LwpRowList::~LwpRowList()