mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-09-25 17:00:36 -09:00
Merge remote-tracking branch 'origin/GP-0_Dan_testFixes-2024-03-12-1'
This commit is contained in:
@@ -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)) {
|
||||
|
||||
Reference in New Issue
Block a user