mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-26 10:00:13 +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();
|
||||
if (inputs.length == 2) {
|
||||
if (inputs.length == 2 && inputs[0].getHigh() != null) {
|
||||
return inputs[0].getHigh().getDataType();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user