diff options
author | Benjamin Peterson <benjamin@python.org> | 2013-05-14 00:56:35 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2013-05-14 00:56:35 (GMT) |
commit | cde88dcf104a4bd390b32db8b1fe7c7cf7d001e1 (patch) | |
tree | ab761bef03e90513eabe3973c7818e0a956856b8 /Modules/posixmodule.c | |
parent | e1970b8182df09f1b4ce057cc2a5b64eadbb04cd (diff) | |
parent | dedac52731bd4085a71c0010454c9804b15be80f (diff) | |
download | cpython-cde88dcf104a4bd390b32db8b1fe7c7cf7d001e1.zip cpython-cde88dcf104a4bd390b32db8b1fe7c7cf7d001e1.tar.gz cpython-cde88dcf104a4bd390b32db8b1fe7c7cf7d001e1.tar.bz2 |
merge 3.3 (#17968)
Diffstat (limited to 'Modules/posixmodule.c')
-rw-r--r-- | Modules/posixmodule.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 8e84392..bf57138 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -10121,6 +10121,7 @@ posix_listxattr(PyObject *self, PyObject *args, PyObject *kwargs) if (length < 0) { if (errno == ERANGE) { PyMem_FREE(buffer); + buffer = NULL; continue; } path_error(&path); |