json serializer: do not raise exception when a scope is not found, while reading.

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@4508 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
inoussa 2016-02-16 12:54:54 +00:00
parent d9dd29c0fc
commit f7ec2ce337

View File

@ -942,7 +942,8 @@ begin
stk := StackTop();
locNode := stk.FindNode(AScopeName);
if not Assigned(locNode) then begin
Error(SERR_ScopeNotFound,[AScopeName]);
Result := -1;
exit;
end;
case locNode.JSONType() of
jtObject : PushStack(locNode,stObject);