mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-07 01:38:14 +02:00
FpDebug: fix dyn array len / 64 bit
git-svn-id: trunk@44573 -
This commit is contained in:
parent
aea501eaad
commit
753201d93a
@ -1994,7 +1994,7 @@ begin
|
|||||||
then begin
|
then begin
|
||||||
if not (IsReadableMem(Addr) and (LocToAddr(Addr) > 4)) then
|
if not (IsReadableMem(Addr) and (LocToAddr(Addr) > 4)) then
|
||||||
exit;
|
exit;
|
||||||
Addr.Address := Addr.Address - 4;
|
Addr.Address := Addr.Address - AddressSize;
|
||||||
if MemManager.ReadSignedInt(Addr, 4, i) then begin
|
if MemManager.ReadSignedInt(Addr, 4, i) then begin
|
||||||
Result := Integer(i)+1;
|
Result := Integer(i)+1;
|
||||||
exit;
|
exit;
|
||||||
|
Loading…
Reference in New Issue
Block a user