mirror of
https://github.com/cemu-project/idapython.git
synced 2025-06-15 12:58:35 +02:00
idautils.py: Functions() will return the correct list of functions even in large binaries
This commit is contained in:
@ -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):
|
||||||
|
Reference in New Issue
Block a user