diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-19 14:05:46 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-19 15:37:58 +0000 |
commit | 6ac4f497ef7cb6d884d914803fe46f676076c3c8 (patch) | |
tree | 844e2dd3c1093dffd887bef9e3b05e4f6bbfe769 /sc/source | |
parent | a8c9edffd4014485d84b50e0a403a34d8e63bb74 (diff) |
coverity#708030 Uninitialized pointer field
Change-Id: I9ccd976bc384e6bee078caf693db737f9b0ef0e1
Diffstat (limited to 'sc/source')
-rw-r--r-- | sc/source/filter/excel/impop.cxx | 3 |
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 ), |