mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-01-10 22:48:08 -05:00
GT-2696: Another idaxml.py memory reference fix (fixes #885)
This commit is contained in:
@@ -1195,7 +1195,7 @@ class XmlExporter(IdaXml):
|
||||
ida_ua.decode_insn(insn, addr)
|
||||
target = (insn.ops[op].value - ri.tdelta + ri.base) & ((1 << 64) - 1)
|
||||
elif idc.is_data(f) == True:
|
||||
target = self.get_data_value(addr) - ri.tdelta + ri.base;
|
||||
target = (self.get_data_value(addr) - ri.tdelta + ri.base) & ((1 << 64) - 1)
|
||||
else:
|
||||
return
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user