Fix crash in find field references

This commit is contained in:
SR_team
2023-03-23 02:33:02 +02:00
parent 78171efe34
commit 4a9e828490
@@ -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();
}