mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 10:49:34 +02:00
Merge remote-tracking branch 'origin/GP-1661_CheckOverlayTypo' into
patch (Closes #3828)
This commit is contained in:
commit
dc751d1118
1 changed files with 3 additions and 3 deletions
|
@ -88,8 +88,8 @@ public abstract class PcodeEmit {
|
|||
AddressSpace myspace = startAddress.getAddressSpace();
|
||||
if (myspace.isOverlaySpace()) {
|
||||
overlayspace = myspace;
|
||||
startAddress = ((OverlayAddressSpace) myspace).getOverlayedSpace().getAddress(
|
||||
startAddress.getOffset());
|
||||
startAddress = ((OverlayAddressSpace) myspace).getOverlayedSpace()
|
||||
.getAddress(startAddress.getOffset());
|
||||
}
|
||||
this.fallOffset = fallOffset;
|
||||
this.uniqueFactory = uniqueFactory;
|
||||
|
@ -742,7 +742,7 @@ public abstract class PcodeEmit {
|
|||
}
|
||||
}
|
||||
for (int i = 0; i < isize; ++i) {
|
||||
VarnodeData v = in[0];
|
||||
VarnodeData v = in[i];
|
||||
if (v.space.equals(overlayspace)) {
|
||||
v.space = ((OverlayAddressSpace) v.space).getOverlayedSpace();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue