mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-02-18 00:20:10 +00:00
Merge remote-tracking branch 'origin/GT-3217_dev747368_NPE_in_FindNoReturnFunctionsAnalyzer' into Ghidra_9.1
This commit is contained in:
commit
a05638dc5e
@ -364,7 +364,7 @@ public class FindNoReturnFunctionsAnalyzer extends AbstractAnalyzer {
|
||||
continue;
|
||||
}
|
||||
Instruction oinst = cp.getListing().getInstructionAt(fromAddress);
|
||||
if (!checkNonReturningIndicators(oinst, noReturnSet, blockModel)) {
|
||||
if ( oinst == null || !checkNonReturningIndicators(oinst, noReturnSet, blockModel)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user