summaryrefslogtreecommitdiff
path: root/lotuswordpro
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-04-04 14:05:54 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-04-04 16:24:32 +0100
commit021ac74ca6171572b85e7b3358d7849dd7802da7 (patch)
treeaab67ca35a763b15a0afb5b265ebc3467cbae2dc /lotuswordpro
parent17db9b37bd9362758394c9e0796860f9f04ad4dc (diff)
coverity#738686 Uninitialized scalar field
Change-Id: Iaefd609a3e5dbfda796da1bb9bb48a1b0d9605a3
Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/source/filter/lwpcelllayout.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/lwpcelllayout.cxx b/lotuswordpro/source/filter/lwpcelllayout.cxx
index a92720dbfc6f..6f59a53fb2d0 100644
--- a/lotuswordpro/source/filter/lwpcelllayout.cxx
+++ b/lotuswordpro/source/filter/lwpcelllayout.cxx
@@ -75,8 +75,11 @@
LwpCellLayout::LwpCellLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm)
: LwpMiddleLayout(objHdr, pStrm)
+ , crowid(0)
+ , ccolid(0)
, cType(LDT_NONE)
-{}
+{
+}
LwpCellLayout::~LwpCellLayout()
{}