cid#707865 Uninitialized pointer field

Change-Id: I86c90a95093d6c90cbc733164a3b773468575b5b
This commit is contained in:
Noel Grandin 2014-02-20 15:21:23 +02:00
parent 9a20dda460
commit 2b9fe0c75e

View File

@ -529,14 +529,18 @@ DBG_NAME(FormulaCompiler)
FormulaCompiler::FormulaCompiler( FormulaTokenArray& rArr )
:
pArr( &rArr ),
pCode( NULL ),
pStack( NULL ),
nRecursion(0),
eLastOp( ocPush ),
nRecursion( 0 ),
nNumFmt( NUMBERFORMAT_UNDEFINED ),
pc( 0 ),
meGrammar( formula::FormulaGrammar::GRAM_UNSPECIFIED ),
bAutoCorrect( false ),
bCorrected( false ),
bCompileForFAP( false ),
bIgnoreErrors( false )
bIgnoreErrors( false ),
glSubTotal( false )
{
DBG_CTOR(FormulaCompiler, NULL);