Hehouhua / idapython

Automatically exported from code.google.com/p/idapython
Other
0 stars 0 forks source link

Bug in idc.py:GetDebuggerEvent #27

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Just look to idc.py file
2. The function GetDebuggerEvent has an small bug:

def GetDebuggerEvent(wfne, timeout):
(...)
    return idaapi.wait_for_next_even(wfne, timeout)

It should be:

def GetDebuggerEvent(wfne, timeout):
(...)
    return idaapi.wait_for_next_event(wfne, timeout)

Original issue reported on code.google.com by joxean.p...@gmail.com on 12 Feb 2009 at 9:36

GoogleCodeExporter commented 8 years ago
Sorry, I forgo to add the version information: I'm using the IDAPython version
distributed with IDA Pro 5.4.

Original comment by joxean.p...@gmail.com on 12 Feb 2009 at 9:38

GoogleCodeExporter commented 8 years ago
Good catch! Thank for the report. The problem is fixed in SVN.

Original comment by gergely.erdelyi on 2 Mar 2009 at 5:24