diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-03-02 18:29:27 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-03-02 18:40:45 -0600 |
commit | 41c440bab0c56497ea0c7c95306a154847cc4a4e (patch) | |
tree | 974620bc321d3a29ae11b51ee7d83c28fd12b9bd /lotuswordpro | |
parent | 0c19977db435d1ca77e3fe1fb2ba30279a4a2846 (diff) |
coverity#738756: Unitialized scalar field
Change-Id: I4fc6f8db2a30564e6bac0052a51610245e9cf61c
Diffstat (limited to 'lotuswordpro')
-rw-r--r-- | lotuswordpro/source/filter/lwptblcell.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/lwptblcell.cxx b/lotuswordpro/source/filter/lwptblcell.cxx index 1ed04eacde9d..a2698f7da388 100644 --- a/lotuswordpro/source/filter/lwptblcell.cxx +++ b/lotuswordpro/source/filter/lwptblcell.cxx @@ -112,7 +112,9 @@ void LwpCellList::Convert(XFCell * pCell, LwpTableLayout* /*pCellsMap*/) } } - LwpNumericValue::LwpNumericValue(LwpObjectHeader &objHdr, LwpSvStream* pStrm):LwpObject(objHdr, pStrm) +LwpNumericValue::LwpNumericValue(LwpObjectHeader &objHdr, LwpSvStream* pStrm) + : LwpObject(objHdr, pStrm) + , cNumber(0) {} LwpNumericValue::~LwpNumericValue() |