cwObject.cpp : Check for unexpected NULL node in objectFromString().
This commit is contained in:
parent
99af70eb37
commit
e4bcdd4034
@ -787,6 +787,12 @@ cw::rc_t cw::objectFromString( const char* s, object_t*& objRef )
|
||||
_objSyntaxError(lexH,"Unknown token type (%i) in text.", int(lexId) );
|
||||
}
|
||||
|
||||
if( cnp == nullptr )
|
||||
{
|
||||
rc = _objSyntaxError( lexH, "Node parse failed." );
|
||||
goto errLabel;
|
||||
}
|
||||
|
||||
// if this is a pair node and it now has both values
|
||||
// then make the parent 'object' the current node
|
||||
if( cnp->is_pair() && cnp->child_count()==2 )
|
||||
|
Loading…
Reference in New Issue
Block a user