mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-05-28 22:21:26 +08:00
python/py-objfile.c (objfpy_get_owner): Increment refcount of result.
gdb/ChangeLog: * python/py-objfile.c (objfpy_get_owner): Increment refcount of result.
This commit is contained in:
@ -93,9 +93,13 @@ objfpy_get_owner (PyObject *self, void *closure)
|
||||
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;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user