Issue #15404: Refleak in PyMethodObject repr.

This commit is contained in:
Andrew Svetlov 2012-07-20 14:51:45 +03:00
parent 3be7a8bbcf
commit ddcb6206bf
2 changed files with 5 additions and 1 deletions

View file

@ -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)) {