mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-06 03:50:02 +02:00
Merge remote-tracking branch 'origin/GP-0_Dan_testFixes-2024-03-12-1'
This commit is contained in:
commit
b82294b537
1 changed files with 4 additions and 0 deletions
|
@ -100,6 +100,10 @@ public class CachedAddressSetView implements AddressSetView {
|
|||
if (minAddress == null) {
|
||||
return;
|
||||
}
|
||||
if (minAddress.compareTo(max) > 0 ||
|
||||
maxAddress.compareTo(min) < 0) {
|
||||
return;
|
||||
}
|
||||
min = cmax(min, minAddress);
|
||||
max = cmin(max, maxAddress);
|
||||
if (known.contains(min, max)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue