diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-02-09 18:02:37 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-02-09 18:02:37 (GMT) |
commit | d43ab05916639d478877d049f6dde4927f429190 (patch) | |
tree | daf95a4118670bf2f56115a95bc33e35ff49a916 /Modules | |
parent | e1857579f8aefee8e3b671af422a5e728f6f6ce0 (diff) | |
download | cpython-d43ab05916639d478877d049f6dde4927f429190.zip cpython-d43ab05916639d478877d049f6dde4927f429190.tar.gz cpython-d43ab05916639d478877d049f6dde4927f429190.tar.bz2 |
Issue #29513: Fixed a reference leak in os.scandir() added in issue #29034.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/posixmodule.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index dc3fb94..8f8ba25 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -11865,7 +11865,6 @@ ScandirIterator_finalize(ScandirIterator *iterator) } } - Py_CLEAR(iterator->path.object); path_cleanup(&iterator->path); /* Restore the saved exception. */ @@ -11969,12 +11968,6 @@ posix_scandir(PyObject *self, PyObject *args, PyObject *kwargs) path_converter, &iterator->path)) goto error; - /* path_converter doesn't keep path.object around, so do it - manually for the lifetime of the iterator here (the refcount - is decremented in ScandirIterator_dealloc) - */ - Py_XINCREF(iterator->path.object); - #ifdef MS_WINDOWS iterator->first_time = 1; |