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

CID#707643 uninitialized members

Change-Id: I23386c780bf484652a518d907d7dc0cc3c910040
üst b8cf30e9
...@@ -25,11 +25,16 @@ ...@@ -25,11 +25,16 @@
#include "expr.hxx" #include "expr.hxx"
SbiExprNode::SbiExprNode( void ) SbiExprNode::SbiExprNode()
{ {
pLeft = NULL; pLeft = NULL;
pRight = NULL; pRight = NULL;
pWithParent = NULL;
pGen = NULL;
eNodeType = SbxDUMMY; eNodeType = SbxDUMMY;
eType = SbxVARIANT;
eTok = NIL;
bError = false;
} }
SbiExprNode::SbiExprNode( SbiParser* p, SbiExprNode* l, SbiToken t, SbiExprNode* r ) SbiExprNode::SbiExprNode( SbiParser* p, SbiExprNode* l, SbiToken t, SbiExprNode* r )
......
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