Commit 7f987398 authored by Antoine Pitrou's avatar Antoine Pitrou

Issue #17968: Fix memory leak in os.listxattr().

parent 901a2788
......@@ -49,8 +49,10 @@ Core and Builtins
Library
-------
- Issue #17968: Fix memory leak in os.listxattr().
- Issue #17606: Fixed support of encoded byte strings in the XMLGenerator
.characters() and ignorableWhitespace() methods. Original patch by Sebastian
characters() and ignorableWhitespace() methods. Original patch by Sebastian
Ortiz Vasquez.
- Issue #17732: Ignore distutils.cfg options pertaining to install paths if a
......
......@@ -10625,8 +10625,10 @@ posix_listxattr(PyObject *self, PyObject *args, PyObject *kwargs)
Py_END_ALLOW_THREADS;
if (length < 0) {
if (errno == ERANGE)
if (errno == ERANGE) {
PyMem_FREE(buffer);
continue;
}
path_error("listxattr", &path);
break;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment