diff options
Diffstat (limited to 'gdb/python/py-breakpoint.c')
-rw-r--r-- | gdb/python/py-breakpoint.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/python/py-breakpoint.c b/gdb/python/py-breakpoint.c index ac64900..507b866 100644 --- a/gdb/python/py-breakpoint.c +++ b/gdb/python/py-breakpoint.c @@ -758,7 +758,7 @@ gdbpy_breakpoints (PyObject *self, PyObject *args) if (bppy_live == 0) return PyTuple_New (0); - gdbpy_ref list (PyList_New (0)); + gdbpy_ref<> list (PyList_New (0)); if (list == NULL) return NULL; @@ -798,7 +798,7 @@ gdbpy_breakpoint_cond_says_stop (const struct extension_language_defn *extlang, if (PyObject_HasAttrString (py_bp, stop_func)) { - gdbpy_ref result (PyObject_CallMethod (py_bp, stop_func, NULL)); + gdbpy_ref<> result (PyObject_CallMethod (py_bp, stop_func, NULL)); stop = 1; if (result != NULL) |