mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
Fixed recent Decompiler location regressions
This commit is contained in:
parent
915760bcae
commit
af7e572632
3 changed files with 14 additions and 0 deletions
|
@ -517,6 +517,10 @@ public class HighFunctionDBUtil {
|
|||
|
||||
public static Variable getFunctionVariable(HighSymbol highSymbol) {
|
||||
|
||||
if (highSymbol == null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
HighFunction highFunction = highSymbol.getHighFunction();
|
||||
Function function = highFunction.getFunction();
|
||||
HighVariable highVar = highSymbol.getHighVariable();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue