* python/py-param.c (compute_enum_values): Decref 'item'.
authorTom Tromey <tromey@redhat.com>
Mon, 20 May 2013 20:30:24 +0000 (20:30 +0000)
committerTom Tromey <tromey@redhat.com>
Mon, 20 May 2013 20:30:24 +0000 (20:30 +0000)
gdb/ChangeLog
gdb/python/py-param.c

index 1970715..f394f87 100644 (file)
@@ -1,5 +1,9 @@
 2013-05-20  Tom Tromey  <tromey@redhat.com>
 
+       * python/py-param.c (compute_enum_values): Decref 'item'.
+
+2013-05-20  Tom Tromey  <tromey@redhat.com>
+
        * mi/mi-main.c: Include python-internal.h.
        (mi_cmd_list_features): Check gdb_python_initialized.
        * python/py-inferior.c (python_on_normal_stop, python_on_resume)
index 2cc17b6..fbd9a77 100644 (file)
@@ -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);