diff options
Diffstat (limited to 'src/debug')
| -rw-r--r-- | src/debug/debugger.c | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/src/debug/debugger.c b/src/debug/debugger.c index a423f76..c268bcf 100644 --- a/src/debug/debugger.c +++ b/src/debug/debugger.c @@ -158,12 +158,15 @@ bool g_binary_debugger_attach(GBinaryDebugger *debugger)      if (debugger->attach == NULL) result = true;      else result = debugger->attach(debugger); -    pglist = get_all_plugins_for_action(PGA_DEBUGGER_ATTACH, &pgcount); +    pgcount = 0; +    pglist = NULL;//get_all_plugins_for_action(PGA_DEBUGGER_ATTACH, &pgcount);      if (pgcount > 0)      { +        /*          for (i = 0; i < pgcount; i++)              g_plugin_module_handle_debugger(pglist[i], debugger, PGA_DEBUGGER_ATTACH); +        */          free(pglist);  | 
