summaryrefslogtreecommitdiff
path: root/plugins/gdbrsp/python/gdb.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/gdbrsp/python/gdb.c')
-rw-r--r--plugins/gdbrsp/python/gdb.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/gdbrsp/python/gdb.c b/plugins/gdbrsp/python/gdb.c
index 24d9717..15c9f94 100644
--- a/plugins/gdbrsp/python/gdb.c
+++ b/plugins/gdbrsp/python/gdb.c
@@ -163,7 +163,10 @@ bool ensure_python_gdb_debugger_is_registered(void)
dict = PyModule_GetDict(module);
- if (!register_class_for_pygobject(dict, G_TYPE_GDB_DEBUGGER, type, get_python_binary_debugger_type()))
+ if (!ensure_python_binary_debugger_is_registered())
+ return false;
+
+ if (!register_class_for_pygobject(dict, G_TYPE_GDB_DEBUGGER, type))
return false;
}