summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-05-10 20:32:53 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-05-10 21:13:01 +0100
commit4beb6136bd93e7e8c59a94e372a8c1320ed1b3b7 (patch)
tree05de49142eecde3f52505a5e8dccca62943e022f /sc
parent5090939e279c044e408463b73448528a1f482cd2 (diff)
coverity#707994 Uninitialized scalar field
Change-Id: I65c96e12bb75cc7ee7db9643be2c385891f80c75
Diffstat (limited to 'sc')
-rw-r--r--sc/source/core/data/dociter.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/sc/source/core/data/dociter.cxx b/sc/source/core/data/dociter.cxx
index 817ff13030f0..3c9d15d65b69 100644
--- a/sc/source/core/data/dociter.cxx
+++ b/sc/source/core/data/dociter.cxx
@@ -2406,6 +2406,8 @@ ScUsedAreaIterator::ScUsedAreaIterator( ScDocument* pDocument, SCTAB nTable,
, aAttrIter( pDocument, nTable, nCol1, nRow1, nCol2, nRow2 )
, nNextCol( nCol1 )
, nNextRow( nRow1 )
+ , nCellCol( 0 )
+ , nCellRow( 0 )
, nFoundStartCol( 0 )
, nFoundEndCol( 0 )
, nFoundRow( 0 )