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