mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +00:00
Issue #13739: It's simpler and more direct to call rewinddir() at the
beginning.
This commit is contained in:
parent
7546ad327d
commit
38f425e475
1 changed files with 1 additions and 2 deletions
|
@ -2890,6 +2890,7 @@ posix_fdlistdir(PyObject *self, PyObject *args)
|
|||
close(fd);
|
||||
return posix_error();
|
||||
}
|
||||
rewinddir(dirp);
|
||||
if ((d = PyList_New(0)) == NULL) {
|
||||
Py_BEGIN_ALLOW_THREADS
|
||||
closedir(dirp);
|
||||
|
@ -2906,7 +2907,6 @@ posix_fdlistdir(PyObject *self, PyObject *args)
|
|||
break;
|
||||
} else {
|
||||
Py_BEGIN_ALLOW_THREADS
|
||||
rewinddir(dirp);
|
||||
closedir(dirp);
|
||||
Py_END_ALLOW_THREADS
|
||||
Py_DECREF(d);
|
||||
|
@ -2930,7 +2930,6 @@ posix_fdlistdir(PyObject *self, PyObject *args)
|
|||
Py_DECREF(v);
|
||||
}
|
||||
Py_BEGIN_ALLOW_THREADS
|
||||
rewinddir(dirp);
|
||||
closedir(dirp);
|
||||
Py_END_ALLOW_THREADS
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue