From 6ac4f497ef7cb6d884d914803fe46f676076c3c8 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Wed, 19 Mar 2014 14:05:46 +0000 Subject: coverity#708030 Uninitialized pointer field Change-Id: I9ccd976bc384e6bee078caf693db737f9b0ef0e1 --- sc/source/filter/excel/impop.cxx | 3 +++ 1 file changed, 3 insertions(+) (limited to 'sc') 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 ), -- cgit