mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-13 12:09:21 +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;
|
hex : string;
|
||||||
begin
|
begin
|
||||||
i := Pos(RawTracePrefix, Trc[TrcIndex]);
|
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]);
|
i := Pos(CallTracePrefix, Trc[TrcIndex]);
|
||||||
if i <= 0 then Exit;
|
if i <= 0 then Exit;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user