Posted: Wed Sep 25, 2019 3:25 am Post subject: [Bug] WatchList - Browse memory region x64
When working with x64 apps (and addresses of course), watchlist's menu (Browse memory region) can't jump to correct address (jumps no nowhere). I believe bug is here:
Code:
unit frmWatchlistUnit;
...
procedure TfrmWatchlist.MenuItem4Click(Sender: TObject);
var
//a: integer; <<---- Here address can hold only 4 bytes
a: PtrUInt; // <<---- Solution
e: boolean;
begin
if lvWatchlist.ItemIndex<>-1 then
begin
a:=symhandler.getAddressFromName(lvWatchlist.items[lvWatchlist.ItemIndex].caption, false, e, context);
if not e then
begin
memorybrowser.hexview.Address:=a;
memorybrowser.show;
end;
end;
end;
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum