Skip to content

Commit 018bf30

Browse files
committed
add extra check for invalid handle in ReadDir::next
1 parent e26f213 commit 018bf30

File tree

1 file changed

+8
-1
lines changed
  • library/std/src/sys/pal/windows

1 file changed

+8
-1
lines changed

library/std/src/sys/pal/windows/fs.rs

+8-1
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,13 @@ impl fmt::Debug for ReadDir {
112112
impl Iterator for ReadDir {
113113
type Item = io::Result<DirEntry>;
114114
fn next(&mut self) -> Option<io::Result<DirEntry>> {
115+
if self.handle.0 == c::INVALID_HANDLE_VALUE {
116+
// This iterator was initialized with an `INVALID_HANDLE_VALUE` as its handle.
117+
// Simply return `None` because this is only the case when `FindFirstFileW` in
118+
// the construction of this iterator returns `ERROR_FILE_NOT_FOUND` which means
119+
// no matchhing files can be found.
120+
return None;
121+
}
115122
if let Some(first) = self.first.take() {
116123
if let Some(e) = DirEntry::new(&self.root, &first) {
117124
return Some(Ok(e));
@@ -1100,7 +1107,7 @@ pub fn readdir(p: &Path) -> io::Result<ReadDir> {
11001107
//
11011108
// Note: `ERROR_PATH_NOT_FOUND` would have been returned by the `FindFirstFileW` function
11021109
// when the path to search in does not exist in the first place.
1103-
Err(Error::from_raw_os_error(last_error.code as i32));
1110+
Err(Error::from_raw_os_error(last_error.code as i32))
11041111
}
11051112
}
11061113
}

0 commit comments

Comments
 (0)