DBG: Fixed array len for 64 bit

git-svn-id: trunk@37368 -
This commit is contained in:
martin 2012-05-20 23:38:26 +00:00
parent 32221ff083
commit c070b17f46

View File

@ -2590,7 +2590,7 @@ var
FBoundHigh := -1;
FLen := -1;
if not RequireRequests([gptrPtypeCustomEval], '^longint('+FExpression+')[-1]') then exit;
if not RequireRequests([gptrPtypeCustomEval], '^^longint('+FExpression+')[-1]') then exit;
if not IsReqError(gptrPtypeCustomEval, False) then begin
FBoundLow := 0;
FBoundHigh := StrToIntDef(GetParsedFromResult(FReqResults[gptrPtypeCustomEval].Result.GdbDescription, 'value'), -1);