aboutsummaryrefslogtreecommitdiff
path: root/gdb/python/py-continueevent.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/python/py-continueevent.c')
-rw-r--r--gdb/python/py-continueevent.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/gdb/python/py-continueevent.c b/gdb/python/py-continueevent.c
index 759b483..9708c0d 100644
--- a/gdb/python/py-continueevent.c
+++ b/gdb/python/py-continueevent.c
@@ -32,12 +32,13 @@
static gdbpy_ref<>
create_continue_event_object (ptid_t ptid)
{
- PyObject *py_thr = py_get_event_thread (ptid);
+ gdbpy_ref<> py_thr = py_get_event_thread (ptid);
if (py_thr == nullptr)
return nullptr;
- return create_thread_event_object (&continue_event_object_type, py_thr);
+ return create_thread_event_object (&continue_event_object_type,
+ py_thr.get ());
}
/* Callback function which notifies observers when a continue event occurs.