IdeDebugger: Don't assert address of empty string. Exit early.

This commit is contained in:
Martin 2025-03-16 21:58:09 +01:00
parent 515752eac7
commit 55c94bee7b

View File

@ -577,10 +577,13 @@ function TStringBuilderPart.GetFullString: String;
var
p: PChar;
begin
Result := '';
if FData = nil then
exit('');
exit();
if FType = sbfString then
exit(string(FData));
if PHeader(FData)^.FTotalLen = 0 then
exit;
SetLength(Result, PHeader(FData)^.FTotalLen);
p := pchar(Result);