mirror of
https://github.com/cemu-project/idapython.git
synced 2024-11-24 01:59:18 +01:00
bugfix: dbg_bpt was called instead of dbg_trace for a DBG_Hooks class implementation
(old bug from version < 1.0)
This commit is contained in:
parent
7e63ea0747
commit
2327aada40
@ -274,7 +274,7 @@ int idaapi DBG_Callback(void *ud, int notification_code, va_list va)
|
||||
case dbg_trace:
|
||||
tid = va_arg(va, thid_t);
|
||||
ip = va_arg(va, ea_t);
|
||||
return proxy->dbg_bpt(tid, ip);
|
||||
return proxy->dbg_trace(tid, ip);
|
||||
|
||||
case dbg_request_error:
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user