mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-21 11:31:43 +00:00
GP-5119: get_register_by_index can fail
This commit is contained in:
parent
b80cfdff3f
commit
54cd023fc9
@ -591,8 +591,8 @@ def putreg():
|
||||
regs = util.dbg._base.reg
|
||||
for i in range(0, len(regs)):
|
||||
name = regs._reg.GetDescription(i)[0]
|
||||
value = regs._get_register_by_index(i)
|
||||
try:
|
||||
value = regs._get_register_by_index(i)
|
||||
values.append(mapper.map_value(nproc, name, value))
|
||||
robj.set_value(name, hex(value))
|
||||
except Exception:
|
||||
|
Loading…
Reference in New Issue
Block a user