Skip to content
This repository was archived by the owner on Jul 8, 2025. It is now read-only.

Commit 5ba9267

Browse files
committed
Fix procname
1 parent 985c11f commit 5ba9267

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

idb/idapython.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -950,7 +950,7 @@ def _disassemble(self, ea):
950950
inst_buf = self.GetManyBytes(ea, size)
951951
segment = self._get_segment(ea)
952952
bitness = 16 << segment.bitness # 16, 32, 64
953-
procname = self.api.idaapi.get_inf_structure().procName.lower()
953+
procname = self.api.idaapi.get_inf_structure().procname.lower()
954954

955955
dis = None
956956
if procname == "arm" and bitness == 64:

0 commit comments

Comments
 (0)