diff options
Diffstat (limited to 'gdb/python/py-varobj.c')
-rw-r--r-- | gdb/python/py-varobj.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/python/py-varobj.c b/gdb/python/py-varobj.c index bac226f..e858556 100644 --- a/gdb/python/py-varobj.c +++ b/gdb/python/py-varobj.c @@ -59,7 +59,7 @@ py_varobj_iter_next (struct varobj_iter *self) gdbpy_enter_varobj enter_py (self->var); - gdbpy_ref item (PyIter_Next (t->iter)); + gdbpy_ref<> item (PyIter_Next (t->iter)); if (item == NULL) { @@ -170,8 +170,8 @@ py_varobj_get_iterator (struct varobj *var, PyObject *printer) if (!PyObject_HasAttr (printer, gdbpy_children_cst)) return NULL; - gdbpy_ref children (PyObject_CallMethodObjArgs (printer, gdbpy_children_cst, - NULL)); + gdbpy_ref<> children (PyObject_CallMethodObjArgs (printer, gdbpy_children_cst, + NULL)); if (children == NULL) { gdbpy_print_stack (); |