mirror of
https://github.com/idapython/src
synced 2026-06-08 14:47:00 +00:00
- simplified idautils.Modules() to return the modinfo_t object as is
This commit is contained in:
+1
-1
@@ -249,7 +249,7 @@ def Modules():
|
||||
mod = ida_idd.modinfo_t()
|
||||
result = ida_dbg.get_first_module(mod)
|
||||
while result:
|
||||
yield ida_idaapi.object_t(name=mod.name, size=mod.size, base=mod.base, rebase_to=mod.rebase_to)
|
||||
yield mod
|
||||
result = ida_dbg.get_next_module(mod)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user