mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-21 21:59:18 +02:00
leakview: support heaptraces from other platforms
This commit is contained in:
parent
3a7915bb59
commit
bdb9668aa8
@ -362,7 +362,7 @@ begin
|
|||||||
trace := TStackTrace(nd.Parent.Data);
|
trace := TStackTrace(nd.Parent.Data);
|
||||||
if not Assigned(trace) or (idx >= trace.Count) then Exit;
|
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;
|
if searchFile = '' then Exit;
|
||||||
|
|
||||||
StackLine:= trace.Lines[idx];
|
StackLine:= trace.Lines[idx];
|
||||||
|
Loading…
Reference in New Issue
Block a user