leakview: a small fix for correct parsing of leaked block size

git-svn-id: trunk@25725 -
This commit is contained in:
dmitry 2010-05-28 06:59:01 +00:00
parent e5929b9523
commit 8c5e3652bc

View File

@ -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;