CID#707643 uninitialized members

Change-Id: I23386c780bf484652a518d907d7dc0cc3c910040
This commit is contained in:
Caolán McNamara
2013-10-07 10:18:48 +01:00
parent b8cf30e93f
commit ef53bd8ab2

View File

@@ -25,11 +25,16 @@
#include "expr.hxx"
SbiExprNode::SbiExprNode( void )
SbiExprNode::SbiExprNode()
{
pLeft = NULL;
pRight = NULL;
pWithParent = NULL;
pGen = NULL;
eNodeType = SbxDUMMY;
eType = SbxVARIANT;
eTok = NIL;
bError = false;
}
SbiExprNode::SbiExprNode( SbiParser* p, SbiExprNode* l, SbiToken t, SbiExprNode* r )