diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-02-18 04:37:26 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-02-18 12:06:23 -0600 |
commit | 263882acdcb7b54aacf834ae52de4ad56a1921bf (patch) | |
tree | a332e9ae852a8487c5dc4096be5f4b485c3343d9 /lotuswordpro | |
parent | 2224ef39728f0ee654d82c51a900aa1837e6663d (diff) |
coverity#738749 Uninitialized scalar field
Change-Id: I3a75f31e9a7775e3685f168f418a333f40312d78
Diffstat (limited to 'lotuswordpro')
-rw-r--r-- | lotuswordpro/source/filter/lwptable.cxx | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/lwptable.cxx b/lotuswordpro/source/filter/lwptable.cxx index 1a3022fb97a9..26eada55e008 100644 --- a/lotuswordpro/source/filter/lwptable.cxx +++ b/lotuswordpro/source/filter/lwptable.cxx @@ -88,7 +88,14 @@ void LwpSuperTable::XFConvert(XFContentContainer* /*pCont*/) //End of Add /*****************************************************************************/ - LwpTable::LwpTable(LwpObjectHeader &objHdr, LwpSvStream* pStrm):LwpContent(objHdr, pStrm) + LwpTable::LwpTable(LwpObjectHeader &objHdr, LwpSvStream* pStrm) + : LwpContent(objHdr, pStrm) + , m_nRow(0) + , m_nColumn(0) + , m_nHeight(0) + , m_nWidth(0) + , m_nDefaultAutoGrowRowHeight(0) + , m_nAttributes(0) {} LwpTable::~LwpTable() |