Merge branch 'master' of gitea.larke.org:klarke/libcw

This commit is contained in:
kevin.larke 2020-04-28 17:39:28 -04:00
commit 239f9c1916

View File

@ -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 )