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

This commit is contained in:
Antoine Pitrou 2013-05-13 19:46:29 +02:00
parent 901a278861
commit 7f987398b7
2 changed files with 6 additions and 2 deletions

View file

@ -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;
}