diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-04 14:07:12 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-04 16:24:33 +0100 |
commit | 84bf09ff69e4fc0a5543c10296e4e704fa7d6c56 (patch) | |
tree | bbc4c238bf307befb2b1a618d5eea6cea02595a3 /lotuswordpro | |
parent | 021ac74ca6171572b85e7b3358d7849dd7802da7 (diff) |
coverity#738687 Uninitialized scalar field
Change-Id: Ie6d1ed2cc0ac17cf74a14337ca6ebbd545e8783f
Diffstat (limited to 'lotuswordpro')
-rw-r--r-- | lotuswordpro/source/filter/lwpcelllayout.cxx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/lwpcelllayout.cxx b/lotuswordpro/source/filter/lwpcelllayout.cxx index 6f59a53fb2d0..85a3d1d569ce 100644 --- a/lotuswordpro/source/filter/lwpcelllayout.cxx +++ b/lotuswordpro/source/filter/lwpcelllayout.cxx @@ -680,7 +680,12 @@ void LwpCellLayout::ApplyProtect(XFCell * pCell, LwpObjectID aTableID) LwpConnectedCellLayout::LwpConnectedCellLayout(LwpObjectHeader &objHdr, LwpSvStream* pStrm) : LwpCellLayout(objHdr, pStrm) -{} + , cnumrows(0) + , cnumcols(0) + , m_nRealrowspan(0) + , m_nRealcolspan(0) +{ +} LwpConnectedCellLayout::~LwpConnectedCellLayout() {} |