mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-22 01:21:59 +08:00
Merge remote-tracking branch 'origin/Ghidra_10.2'
This commit is contained in:
+1
-1
@@ -282,7 +282,7 @@ public class SharedReturnAnalysisCmd extends BackgroundCommand {
|
||||
Address fallFrom = instr.getFallFrom();
|
||||
if (fallFrom != null) {
|
||||
Instruction fallInstr = program.getListing().getInstructionContaining(fallFrom);
|
||||
if (fallInstr != null && fallInstr.getFallThrough().equals(location)) {
|
||||
if (fallInstr != null && location.equals(fallInstr.getFallThrough())) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user