diff options
Diffstat (limited to 'gdb/python/py-linetable.c')
-rw-r--r-- | gdb/python/py-linetable.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/python/py-linetable.c b/gdb/python/py-linetable.c index 1f73ff7..d8597e4 100644 --- a/gdb/python/py-linetable.c +++ b/gdb/python/py-linetable.c @@ -132,14 +132,14 @@ build_line_table_tuple_from_pcs (int line, VEC (CORE_ADDR) *vec) if (vec_len < 1) Py_RETURN_NONE; - gdbpy_ref tuple (PyTuple_New (vec_len)); + gdbpy_ref<> tuple (PyTuple_New (vec_len)); if (tuple == NULL) return NULL; for (i = 0; VEC_iterate (CORE_ADDR, vec, i, pc); ++i) { - gdbpy_ref obj (build_linetable_entry (line, pc)); + gdbpy_ref<> obj (build_linetable_entry (line, pc)); if (obj == NULL) return NULL; @@ -238,7 +238,7 @@ ltpy_get_all_source_lines (PyObject *self, PyObject *args) return NULL; } - gdbpy_ref source_dict (PyDict_New ()); + gdbpy_ref<> source_dict (PyDict_New ()); if (source_dict == NULL) return NULL; @@ -250,7 +250,7 @@ ltpy_get_all_source_lines (PyObject *self, PyObject *args) include in the source set. */ if (item->line > 0) { - gdbpy_ref line (gdb_py_object_from_longest (item->line)); + gdbpy_ref<> line (gdb_py_object_from_longest (item->line)); if (line == NULL) return NULL; |