mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-06-02 03:50:47 +08:00
Corrected minor bug with fallthru override preventing jump override
This commit is contained in:
+1
-1
@@ -816,9 +816,9 @@ public abstract class PcodeEmit {
|
|||||||
dest.space = fallOverride.getAddressSpace();
|
dest.space = fallOverride.getAddressSpace();
|
||||||
dest.offset = fallOverride.getOffset();
|
dest.offset = fallOverride.getOffset();
|
||||||
dest.size = dest.space.getPointerSize();
|
dest.size = dest.space.getPointerSize();
|
||||||
}
|
|
||||||
return opcode;
|
return opcode;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
//if there is an overriding jump reference, change a conditional jump to an
|
//if there is an overriding jump reference, change a conditional jump to an
|
||||||
//unconditional jump with the target given by the reference
|
//unconditional jump with the target given by the reference
|
||||||
|
|||||||
Reference in New Issue
Block a user