mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-02 14:00:18 +02:00
DBG: Fix parsing certain error msgs
git-svn-id: trunk@30795 -
This commit is contained in:
parent
47eae4dc9c
commit
d3019b5e88
@ -9328,8 +9328,10 @@ begin
|
||||
AReq^.Result.Kind := ptprkSimple;
|
||||
end;
|
||||
end
|
||||
else
|
||||
else begin
|
||||
AReq^.Result.GdbDescription := R.Values;
|
||||
AReq^.Error := R.Values;
|
||||
end;
|
||||
AReq := AReq^.Next;
|
||||
end;
|
||||
end;
|
||||
|
@ -1318,7 +1318,7 @@ var
|
||||
ResultList: TGDBMINameValueList;
|
||||
begin
|
||||
ResultList := TGDBMINameValueList.Create(AGdbDesc);
|
||||
FExprEvaluatedAsText := ResultList.Values['value'];
|
||||
FExprEvaluatedAsText := ResultList.Values[AField];
|
||||
FHasExprEvaluatedAsText := True;
|
||||
//FTextValue := DeleteEscapeChars(FTextValue);
|
||||
ResultList.Free;
|
||||
@ -1359,6 +1359,7 @@ var
|
||||
exit;
|
||||
end;
|
||||
|
||||
// TODO: set Validity = error
|
||||
ParseFromResult(FReqResults[gptrEvalExpr].Result.GdbDescription, 'msg');
|
||||
Result := True;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user