From: Tom Tromey Date: Mon, 20 May 2013 20:30:24 +0000 (+0000) Subject: * python/py-param.c (compute_enum_values): Decref 'item'. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fcb49fc817243a98937f14a9385b3de7d17417d6;p=binutils-gdb.git * python/py-param.c (compute_enum_values): Decref 'item'. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 19707154dfe..f394f870724 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2013-05-20 Tom Tromey + + * python/py-param.c (compute_enum_values): Decref 'item'. + 2013-05-20 Tom Tromey * mi/mi-main.c: Include python-internal.h. diff --git a/gdb/python/py-param.c b/gdb/python/py-param.c index 2cc17b6a71d..fbd9a7706f4 100644 --- a/gdb/python/py-param.c +++ b/gdb/python/py-param.c @@ -611,12 +611,14 @@ compute_enum_values (parmpy_object *self, PyObject *enum_values) } if (! gdbpy_is_string (item)) { + Py_DECREF (item); do_cleanups (back_to); PyErr_SetString (PyExc_RuntimeError, _("The enumeration item not a string.")); return 0; } self->enumeration[i] = python_string_to_host_string (item); + Py_DECREF (item); if (self->enumeration[i] == NULL) { do_cleanups (back_to);