Kaydet (Commit) 3e113922 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#708051 Uninitialized scalar field

Change-Id: I2612f09060b95f18dbf6cea476a8292a55a9d503
üst 6e31fe9a
......@@ -64,19 +64,19 @@ LOTUS_ROOT::~LOTUS_ROOT()
static osl::Mutex aLotImpSemaphore;
ImportLotus::ImportLotus( SvStream& aStream, ScDocument* pDoc, rtl_TextEncoding eQ ) :
ImportTyp( pDoc, eQ ),
pIn( &aStream ),
aConv( *pIn, eQ, false )
ImportLotus::ImportLotus( SvStream& aStream, ScDocument* pDoc, rtl_TextEncoding eQ )
: ImportTyp(pDoc, eQ)
, pIn(&aStream)
, aConv(*pIn, eQ, false)
, nTab(0)
, nExtTab(0)
{
// good point to start locking of import lotus
aLotImpSemaphore.acquire();
pLotusRoot = new LOTUS_ROOT( pDoc, eQ);
pLotusRoot = new LOTUS_ROOT(pDoc, eQ);
}
ImportLotus::~ImportLotus()
{
delete pLotusRoot;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment