From cb57938dccc152f71694b4767493f3c578f73802 Mon Sep 17 00:00:00 2001 From: "gergely.erdelyi" Date: Sat, 17 Oct 2009 21:08:36 +0000 Subject: [PATCH] idc.py: Fixed RunTo() and GetExceptionQty() --- python/idc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/idc.py b/python/idc.py index ee8a446..f670486 100644 --- a/python/idc.py +++ b/python/idc.py @@ -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):