mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-06 03:50:02 +02:00
GP-3260 Corrected MIPS relocation issues and a few related issues affecting listing markup
This commit is contained in:
parent
acb07dd535
commit
836604e09d
12 changed files with 266 additions and 235 deletions
|
@ -162,7 +162,9 @@ public abstract class DecompilerReference {
|
|||
int n = parent.getLength();
|
||||
if (offset >= 0 && offset < n) {
|
||||
DataTypeComponent dtc = parent.getComponentContaining(field.getOffset());
|
||||
fieldDt = dtc.getDataType();
|
||||
if (dtc != null) {
|
||||
return dtc.getDataType();
|
||||
}
|
||||
}
|
||||
}
|
||||
return fieldDt;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue