mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 19:42:36 +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
|
FlowType myFlowType = getFlowType(); // getFlowType will validate
|
||||||
if (myFlowType.hasFallthrough()) {
|
if (myFlowType.hasFallthrough()) {
|
||||||
try {
|
try {
|
||||||
return address.addNoWrap(getDefaultFallThroughOffset());
|
return getAddress().addNoWrap(proto.getFallThroughOffset(this));
|
||||||
}
|
}
|
||||||
catch (AddressOverflowException e) {
|
catch (AddressOverflowException e) {
|
||||||
// ignore
|
// ignore
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue