mirror of
https://github.com/cemu-project/idapython.git
synced 2024-11-24 18:16:55 +01:00
idautils.py: Functions() will return the correct list of functions even in large binaries
This commit is contained in:
parent
ea4cd26a6a
commit
5ec97ef3aa
@ -219,8 +219,9 @@ def Functions(start=None, end=None):
|
|||||||
if not func:
|
if not func:
|
||||||
func = idaapi.get_next_func(start)
|
func = idaapi.get_next_func(start)
|
||||||
while func and func.startEA < end:
|
while func and func.startEA < end:
|
||||||
yield func.startEA
|
startea = func.startEA
|
||||||
func = idaapi.get_next_func(func.startEA)
|
yield startea
|
||||||
|
func = idaapi.get_next_func(startea)
|
||||||
|
|
||||||
|
|
||||||
def Chunks(start):
|
def Chunks(start):
|
||||||
|
Loading…
Reference in New Issue
Block a user