mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 17:56: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
|
try
|
||||||
{
|
{
|
||||||
fMemoryBlock.setValue(currentPosition, replaceData);
|
fMemoryBlock.setValue(currentPosition.subtract(fMemoryBlock.getBigBaseAddress()), replaceData);
|
||||||
}
|
}
|
||||||
catch(DebugException de)
|
catch(DebugException de)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue