mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-03 09:49:23 +02:00
Merge remote-tracking branch 'origin/Ghidra_11.4'
This commit is contained in:
commit
d0c327973c
1 changed files with 4 additions and 1 deletions
|
@ -1291,7 +1291,10 @@ def put_modules(modules: Optional[Dict[str, util.Module]] = None,
|
||||||
if start_base != start_addr.space:
|
if start_base != start_addr.space:
|
||||||
trace.create_overlay_space(
|
trace.create_overlay_space(
|
||||||
start_base, start_addr.space)
|
start_base, start_addr.space)
|
||||||
secobj.set_value('Range', start_addr.extend(s.end - s.start))
|
if s.end == s.start:
|
||||||
|
secobj.set_value('Address', start_addr)
|
||||||
|
else:
|
||||||
|
secobj.set_value('Range', start_addr.extend(s.end - s.start))
|
||||||
secobj.set_value('Offset', hex(s.offset))
|
secobj.set_value('Offset', hex(s.offset))
|
||||||
secobj.set_value('Attrs', s.attrs, schema=sch.STRING_ARR)
|
secobj.set_value('Attrs', s.attrs, schema=sch.STRING_ARR)
|
||||||
secobj.insert()
|
secobj.insert()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue