leakview: support heaptraces from other platforms

This commit is contained in:
mattias 2024-04-14 13:07:50 +02:00
parent 3a7915bb59
commit bdb9668aa8

View File

@ -362,7 +362,7 @@ begin
trace := TStackTrace(nd.Parent.Data);
if not Assigned(trace) or (idx >= trace.Count) then Exit;
searchFile := trace.Lines[idx].FileName;
searchFile := Trim(SetDirSeparators(trace.Lines[idx].FileName));
if searchFile = '' then Exit;
StackLine:= trace.Lines[idx];