mirror of https://github.com/python/cpython
Fixed memory leak in error branch of object_repr which may leak a reference to mod when type_qualname returns NULL. CID 715371
This commit is contained in:
commit
76c082911b
|
@ -3130,8 +3130,10 @@ object_repr(PyObject *self)
|
|||
mod = NULL;
|
||||
}
|
||||
name = type_qualname(type, NULL);
|
||||
if (name == NULL)
|
||||
if (name == NULL) {
|
||||
Py_XDECREF(mod);
|
||||
return NULL;
|
||||
}
|
||||
if (mod != NULL && PyUnicode_CompareWithASCIIString(mod, "builtins"))
|
||||
rtn = PyUnicode_FromFormat("<%U.%U object at %p>", mod, name, self);
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue