mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-06-01 10:25:03 +08:00
Merge remote-tracking branch 'origin/patch'
This commit is contained in:
+1
-1
@@ -148,7 +148,7 @@ public class AddressEvaluator extends ExpressionEvaluator {
|
|||||||
long offset = longValue.getLongValue();
|
long offset = longValue.getLongValue();
|
||||||
AddressSpace space = getAddressSpace();
|
AddressSpace space = getAddressSpace();
|
||||||
try {
|
try {
|
||||||
return space.getAddressInThisSpaceOnly(offset);
|
return space.getAddressInThisSpaceOnly(offset*space.getAddressableUnitSize());
|
||||||
}
|
}
|
||||||
catch (AddressOutOfBoundsException e) {
|
catch (AddressOutOfBoundsException e) {
|
||||||
throw new ExpressionException(e.getMessage());
|
throw new ExpressionException(e.getMessage());
|
||||||
|
|||||||
Reference in New Issue
Block a user