diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-07-20 11:51:45 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-07-20 11:51:45 (GMT) |
commit | ddcb6206bf7feebb0a1671e475ee877f683af145 (patch) | |
tree | 30ff6289a6ee7163ac4990175ae967a1a8fe3fc8 | |
parent | 3be7a8bbcfb82d54865b1bf3d775d40a66c8620f (diff) | |
download | cpython-ddcb6206bf7feebb0a1671e475ee877f683af145.zip cpython-ddcb6206bf7feebb0a1671e475ee877f683af145.tar.gz cpython-ddcb6206bf7feebb0a1671e475ee877f683af145.tar.bz2 |
Issue #15404: Refleak in PyMethodObject repr.
-rw-r--r-- | Misc/NEWS | 2 | ||||
-rw-r--r-- | Objects/classobject.c | 4 |
2 files changed, 5 insertions, 1 deletions
@@ -10,6 +10,8 @@ What's New in Python 3.2.4 Core and Builtins ----------------- +- Issue #15404: Refleak in PyMethodObject repr. + - Issue #15394: An issue in PyModule_Create that caused references to be leaked on some error paths has been fixed. Patch by Julia Lawall. diff --git a/Objects/classobject.c b/Objects/classobject.c index 6df930f..b7d35ef 100644 --- a/Objects/classobject.c +++ b/Objects/classobject.c @@ -243,8 +243,10 @@ method_repr(PyMethodObject *a) else { klassname = PyObject_GetAttrString(klass, "__name__"); if (klassname == NULL) { - if (!PyErr_ExceptionMatches(PyExc_AttributeError)) + if (!PyErr_ExceptionMatches(PyExc_AttributeError)) { + Py_XDECREF(funcname); return NULL; + } PyErr_Clear(); } else if (!PyUnicode_Check(klassname)) { |