mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-06-02 05:10:52 +08:00
Fix crash in find field references
This commit is contained in:
+1
-1
@@ -106,7 +106,7 @@ public abstract class DecompilerVariable {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Varnode[] inputs = op.getInputs();
|
Varnode[] inputs = op.getInputs();
|
||||||
if (inputs.length == 2) {
|
if (inputs.length == 2 && inputs[0].getHigh() != null) {
|
||||||
return inputs[0].getHigh().getDataType();
|
return inputs[0].getHigh().getDataType();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user