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

This commit is contained in:
Antoine Pitrou 2013-05-13 19:48:46 +02:00
commit 5f18791902
2 changed files with 6 additions and 2 deletions

View file

@ -10119,8 +10119,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(&path);
break;
}