aboutsummaryrefslogtreecommitdiff
path: root/gdb/python/py-breakpoint.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@adacore.com>2024-06-11 14:10:08 -0600
committerTom Tromey <tromey@adacore.com>2024-06-13 10:13:36 -0600
commit7c03e522d4e059a7c59533e4b01771a7cc4bb68e (patch)
treedd852f7f61ce526ff61b5eb98977d73463703a9f /gdb/python/py-breakpoint.c
parent54904469f71c06102e15707c2cb4964e496a8ed6 (diff)
downloadbinutils-7c03e522d4e059a7c59533e4b01771a7cc4bb68e.zip
binutils-7c03e522d4e059a7c59533e4b01771a7cc4bb68e.tar.gz
binutils-7c03e522d4e059a7c59533e4b01771a7cc4bb68e.tar.bz2
Return gdbpy_ref<> from gdbpy_call_method
This changes gdbpy_call_method to return a gdbpy_ref<>. This is slightly safer because it makes it simpler to correctly handle reference counts. Reviewed-By: Tom de Vries <tdevries@suse.de>
Diffstat (limited to 'gdb/python/py-breakpoint.c')
-rw-r--r--gdb/python/py-breakpoint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/python/py-breakpoint.c b/gdb/python/py-breakpoint.c
index 1b8c717..fdc2483 100644
--- a/gdb/python/py-breakpoint.c
+++ b/gdb/python/py-breakpoint.c
@@ -1174,7 +1174,7 @@ gdbpy_breakpoint_cond_says_stop (const struct extension_language_defn *extlang,
if (PyObject_HasAttrString (py_bp, stop_func))
{
- gdbpy_ref<> result (gdbpy_call_method (py_bp, stop_func));
+ gdbpy_ref<> result = gdbpy_call_method (py_bp, stop_func);
stop = 1;
if (result != NULL)