mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 10:49:34 +02:00
GP-1778 corrected AddressRangeMapDB coalescing bug
This commit is contained in:
parent
17c0b78756
commit
323935e43f
1 changed files with 1 additions and 1 deletions
|
@ -701,7 +701,7 @@ public class AddressRangeMapDB implements DBListener {
|
|||
return null;
|
||||
}
|
||||
|
||||
if (paintStart.isSuccessor(recordEnd) || paintStart.compareTo(recordEnd) <= 0) {
|
||||
if (recordEnd.isSuccessor(paintStart) || paintStart.compareTo(recordEnd) <= 0) {
|
||||
// otherwise, merge by deleting previous record and changing start to record's start
|
||||
rangeMapTable.deleteRecord(record.getKey());
|
||||
return recordStart;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue