summaryrefslogtreecommitdiff
path: root/lotuswordpro
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2014-03-03 21:45:28 -0600
committerNorbert Thiebaud <nthiebaud@gmail.com>2014-03-03 21:45:28 -0600
commit89d6bef541bf894f27bcb79d96220f60aacbf77c (patch)
treedf572e669462e488d6d9884229d697b012962747 /lotuswordpro
parentcc14fe3a58db591c9f5042403fb21308e8f2990b (diff)
coverity#738710 Unitialized scalar field
Change-Id: I441e4f712431c906acaaee88f5eee2531224a73d
Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/source/filter/lwpfootnote.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/lotuswordpro/source/filter/lwpfootnote.cxx b/lotuswordpro/source/filter/lwpfootnote.cxx
index 0d590841bc94..0cd32161bfcc 100644
--- a/lotuswordpro/source/filter/lwpfootnote.cxx
+++ b/lotuswordpro/source/filter/lwpfootnote.cxx
@@ -146,6 +146,8 @@ LwpFootnote* LwpFribFootnote::GetFootnote()
LwpFootnote::LwpFootnote(LwpObjectHeader &objHdr, LwpSvStream *pStrm)
: LwpOrderedObject(objHdr, pStrm)
+ , m_nType(0)
+ , m_nRow(0)
{
}