mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
GP-0 Fix for minor instruction length override regression
This commit is contained in:
parent
acf3e49928
commit
c58647b7d2
1 changed files with 1 additions and 1 deletions
|
@ -938,7 +938,7 @@ public class InstructionDB extends CodeUnitDB implements Instruction, Instructio
|
|||
FlowType myFlowType = getFlowType(); // getFlowType will validate
|
||||
if (myFlowType.hasFallthrough()) {
|
||||
try {
|
||||
return address.addNoWrap(getDefaultFallThroughOffset());
|
||||
return getAddress().addNoWrap(proto.getFallThroughOffset(this));
|
||||
}
|
||||
catch (AddressOverflowException e) {
|
||||
// ignore
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue