mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-05 15:16:25 +02:00
leakview: a small fix for correct parsing of leaked block size
git-svn-id: trunk@25725 -
This commit is contained in:
parent
e5929b9523
commit
8c5e3652bc
@ -353,7 +353,7 @@ var
|
||||
hex : string;
|
||||
begin
|
||||
i := Pos(RawTracePrefix, Trc[TrcIndex]);
|
||||
if (i < 0) and not IsTraceLine(Trc[TrcIndex]) then begin
|
||||
if (i <= 0) and not IsTraceLine(Trc[TrcIndex]) then begin
|
||||
i := Pos(CallTracePrefix, Trc[TrcIndex]);
|
||||
if i <= 0 then Exit;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user