mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
[206543] FindReplace incorrectly sets value on the memoryblock at the absolute address; should use offset
This commit is contained in:
parent
1db10b1da9
commit
3674468f2f
1 changed files with 1 additions and 1 deletions
|
@ -740,7 +740,7 @@ public class FindReplaceDialog extends SelectionDialog
|
|||
{
|
||||
try
|
||||
{
|
||||
fMemoryBlock.setValue(currentPosition, replaceData);
|
||||
fMemoryBlock.setValue(currentPosition.subtract(fMemoryBlock.getBigBaseAddress()), replaceData);
|
||||
}
|
||||
catch(DebugException de)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue