gdb/ChangeLog:
* python/py-objfile.c (objfpy_get_owner): Increment refcount of result.
+2014-12-08 Doug Evans <dje@google.com>
+
+ * python/py-objfile.c (objfpy_get_owner): Increment refcount of result.
+
2014-12-08 Doug Evans <dje@google.com>
* NEWS: Mention gdb.Objfile.owner.
OBJFPY_REQUIRE_VALID (obj);
owner = objfile->separate_debug_objfile_backlink;
-
if (owner != NULL)
- return objfile_to_objfile_object (owner);
+ {
+ PyObject *result = objfile_to_objfile_object (owner);
+
+ Py_XINCREF (result);
+ return result;
+ }
Py_RETURN_NONE;
}