mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 18:29:37 +02:00
Fix VarnodeBank.locRange(AddressSpace) not returning negative addresses
This commit is contained in:
parent
9421ec0ab0
commit
d96ae1a284
1 changed files with 1 additions and 1 deletions
|
@ -210,7 +210,7 @@ public class VarnodeBank {
|
|||
}
|
||||
|
||||
public Iterator<VarnodeAST> locRange(AddressSpace spaceid) {
|
||||
VarnodeAST searchvn1 = new VarnodeAST(spaceid.getAddress(0),0,0);
|
||||
VarnodeAST searchvn1 = new VarnodeAST(spaceid.getMinAddress(),0,0);
|
||||
searchvn1.setInput(true);
|
||||
VarnodeAST searchvn2 = new VarnodeAST(spaceid.getMaxAddress(), Integer.MAX_VALUE, 0);
|
||||
return locTree.subSet(searchvn1, searchvn2).iterator();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue