mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-09-07 09:11:15 -09:00
GP-5919: Backporting decompiler highSymbol NPE fix (Closes #8413)
This commit is contained in:
@@ -1047,7 +1047,7 @@ public class DecompilerPanel extends JPanel implements FieldMouseListener, Field
|
||||
}
|
||||
|
||||
HighSymbol highSymbol = highVar.getSymbol();
|
||||
if (highSymbol.isParameter()) {
|
||||
if (highSymbol != null && highSymbol.isParameter()) {
|
||||
// decomp param that is not in the listing; put on signature
|
||||
return new FunctionNameDecompilerLocation(program, entryPoint, cvt.getText(), info);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user