summaryrefslogtreecommitdiff
path: root/sc/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-03-19 14:05:46 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-03-19 15:37:58 +0000
commit6ac4f497ef7cb6d884d914803fe46f676076c3c8 (patch)
tree844e2dd3c1093dffd887bef9e3b05e4f6bbfe769 /sc/source
parenta8c9edffd4014485d84b50e0a403a34d8e63bb74 (diff)
coverity#708030 Uninitialized pointer field
Change-Id: I9ccd976bc384e6bee078caf693db737f9b0ef0e1
Diffstat (limited to 'sc/source')
-rw-r--r--sc/source/filter/excel/impop.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/sc/source/filter/excel/impop.cxx b/sc/source/filter/excel/impop.cxx
index d79c1d8b4478..4bc69bb122d5 100644
--- a/sc/source/filter/excel/impop.cxx
+++ b/sc/source/filter/excel/impop.cxx
@@ -114,6 +114,9 @@ ImportExcel::ImportExcel( XclImpRootData& rImpData, SvStream& rStrm ):
maStrm( rStrm, GetRoot() ),
aIn( maStrm ),
maScOleSize( ScAddress::INITIALIZE_INVALID ),
+ pColOutlineBuff(NULL),
+ pRowOutlineBuff(NULL),
+ pColRowBuff(NULL),
mpLastFormula(NULL),
mnLastRefIdx( 0 ),
mnIxfeIndex( 0 ),