FpDbg: Fixed problem with uninitialized variable

git-svn-id: trunk@44491 -
This commit is contained in:
joost 2014-03-23 13:41:15 +00:00
parent e6f28409e4
commit 4613232478

View File

@ -129,6 +129,7 @@ var
i: Int64;
p: PByte;
begin
Result := '';
if ASize > 8
then begin
Result := 'HexValue: size to large';
@ -136,7 +137,6 @@ begin
end;
if ASize = 0
then begin
Result := '';
Exit;
end;