Skip to content

Commit 6ff27d2

Browse files
authored
Rollup merge of rust-lang#130207 - GrigorenkoPV:ERROR_CANT_RESOLVE_FILENAME, r=ChrisDenton
Map `ERROR_CANT_RESOLVE_FILENAME` to `ErrorKind::FilesystemLoop` cc rust-lang#86442 As summarized in rust-lang#130188, there seems to be a consensus that this should be done.
2 parents 0a47644 + cc0044c commit 6ff27d2

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

std/src/sys/pal/windows/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ pub fn decode_error_kind(errno: i32) -> ErrorKind {
122122
c::ERROR_NOT_SAME_DEVICE => return CrossesDevices,
123123
c::ERROR_TOO_MANY_LINKS => return TooManyLinks,
124124
c::ERROR_FILENAME_EXCED_RANGE => return InvalidFilename,
125+
c::ERROR_CANT_RESOLVE_FILENAME => return FilesystemLoop,
125126
_ => {}
126127
}
127128

0 commit comments

Comments
 (0)