mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 10:49:34 +02:00
GP-1 corrected potential NPE for DB index-based iterations
This commit is contained in:
parent
3bab8e4284
commit
f4c4b48a2e
1 changed files with 1 additions and 1 deletions
|
@ -523,7 +523,7 @@ public class FieldIndexTable extends IndexTable {
|
|||
DBRecord rec = primaryTable.getRecord(f.getPrimaryKey());
|
||||
val = rec.getField(indexColumn);
|
||||
}
|
||||
if (val.compareTo(min.getNonTruncatedIndexField()) > 0) {
|
||||
if (val.compareTo(max.getNonTruncatedIndexField()) > 0) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue