GP-3260 Corrected MIPS relocation issues and a few related issues affecting listing markup

This commit is contained in:
ghidra1 2023-03-27 19:10:19 -04:00
parent acb07dd535
commit 836604e09d
12 changed files with 266 additions and 235 deletions

View file

@ -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;