aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Koning <pkoning@equallogic.com>2011-09-15 18:33:15 +0000
committerPaul Koning <pkoning@equallogic.com>2011-09-15 18:33:15 +0000
commit5af65ec072edf782b67169fd3ea1b91b8255d30f (patch)
treef85ac04dc8ea2ca2d5f9d9c35b51863663c7c936
parent883640a804647cb6c54766eca0a4e40ccf808386 (diff)
downloadbinutils-5af65ec072edf782b67169fd3ea1b91b8255d30f.zip
binutils-5af65ec072edf782b67169fd3ea1b91b8255d30f.tar.gz
binutils-5af65ec072edf782b67169fd3ea1b91b8255d30f.tar.bz2
* python/py-cmd.c (gdbpy_string_to_argv): Decrement reference
count of item appended to list. * python/py-type.c (typy_fields): Likewise.
-rw-r--r--gdb/ChangeLog6
-rw-r--r--gdb/python/py-cmd.c6
-rw-r--r--gdb/python/py-type.c1
3 files changed, 9 insertions, 4 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index fb9b6f1..19d3709 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,11 @@
2011-09-15 Paul Koning <paul_koning@dell.com>
+ * python/py-cmd.c (gdbpy_string_to_argv): Decrement reference
+ count of item appended to list.
+ * python/py-type.c (typy_fields): Likewise.
+
+2011-09-15 Paul Koning <paul_koning@dell.com>
+
* MAINTAINERS (Write After Approval): Add myself to the list.
2011-09-15 Kevin Pouget <kevin.pouget@st.com>
diff --git a/gdb/python/py-cmd.c b/gdb/python/py-cmd.c
index 677c1e4..cfddff8 100644
--- a/gdb/python/py-cmd.c
+++ b/gdb/python/py-cmd.c
@@ -683,14 +683,12 @@ gdbpy_string_to_argv (PyObject *self, PyObject *args)
if (argp == NULL
|| PyList_Append (py_argv, argp) < 0)
{
- if (argp != NULL)
- {
- Py_DECREF (argp);
- }
+ Py_XDECREF (argp);
Py_DECREF (py_argv);
freeargv (c_argv);
return NULL;
}
+ Py_DECREF (argp);
}
freeargv (c_argv);
diff --git a/gdb/python/py-type.c b/gdb/python/py-type.c
index 335342e..29b2629 100644
--- a/gdb/python/py-type.c
+++ b/gdb/python/py-type.c
@@ -246,6 +246,7 @@ typy_fields (PyObject *self, PyObject *args)
Py_DECREF (result);
return NULL;
}
+ Py_DECREF (dict);
}
return result;