Merge remote-tracking branch 'origin/Ghidra_10.2'

This commit is contained in:
Ryan Kurtz
2022-10-27 00:32:45 -04:00
@@ -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;
}
}