diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-21 21:03:17 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-22 08:43:50 +0100 |
commit | 74680add8abb48cfd1536e7eced622bf8c27485d (patch) | |
tree | 0300a2e7c7c2595c2a02e783d54dcf4220e7bb28 /sc | |
parent | acf018e6c2f2e49005962724670fe346dc55161c (diff) |
coverity#708063 Uninitialized scalar field
Change-Id: Ic643d3c5131d88a732d8b72d75e40b4a8a188e9e
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/xml/XMLExportIterator.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sc/source/filter/xml/XMLExportIterator.cxx b/sc/source/filter/xml/XMLExportIterator.cxx index 729ca41ddca4..efb9da3086de 100644 --- a/sc/source/filter/xml/XMLExportIterator.cxx +++ b/sc/source/filter/xml/XMLExportIterator.cxx @@ -605,6 +605,8 @@ ScMyNotEmptyCellsIterator::ScMyNotEmptyCellsIterator(ScXMLExport& rTempXMLExport pDetectiveObj(NULL), pDetectiveOp(NULL), rExport(rTempXMLExport), + nCellCol(0), + nCellRow(0), nCurrentTable(SCTAB_MAX) { } |