summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-05-23 10:42:21 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-05-23 14:16:06 +0100
commit8f36da26141b38b8976981d6673c64c43f38430b (patch)
treec703e9d90435f061ccf7b86afb3b3274731c3829 /sc
parentbc9bcceb2e4646b15fff64b365ea2ff48ed00666 (diff)
coverity#707994 Uninitialized scalar field
Change-Id: I295cbb23529f614c35f39c756c555dd9eabe8623
Diffstat (limited to 'sc')
-rw-r--r--sc/source/core/data/dociter.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/sc/source/core/data/dociter.cxx b/sc/source/core/data/dociter.cxx
index d92858628127..235e0d277d72 100644
--- a/sc/source/core/data/dociter.cxx
+++ b/sc/source/core/data/dociter.cxx
@@ -2408,6 +2408,9 @@ ScUsedAreaIterator::ScUsedAreaIterator( ScDocument* pDocument, SCTAB nTable,
, nNextRow( nRow1 )
, nCellCol( 0 )
, nCellRow( 0 )
+ , nAttrCol1( 0 )
+ , nAttrCol2( 0 )
+ , nAttrRow( 0 )
, nFoundStartCol( 0 )
, nFoundEndCol( 0 )
, nFoundRow( 0 )