mirror of
https://github.com/idapython/src
synced 2026-06-08 14:47:00 +00:00
idc.py: Fixed RunTo() and GetExceptionQty()
This commit is contained in:
+2
-2
@@ -6615,7 +6615,7 @@ def RunTo(ea):
|
||||
|
||||
@return: success
|
||||
"""
|
||||
return idaapi.run_to()
|
||||
return idaapi.run_to(ea)
|
||||
|
||||
|
||||
def StepUntilRet():
|
||||
@@ -6945,7 +6945,7 @@ def GetExceptionQty():
|
||||
"""
|
||||
Get number of defined exception codes
|
||||
"""
|
||||
return iddapi.get_exception_qty()
|
||||
return idaapi.get_exception_qty()
|
||||
|
||||
|
||||
def GetExceptionCode(idx):
|
||||
|
||||
Reference in New Issue
Block a user