| author | |
| committer | |
| log | c57749f5cefd26d79d97a5a00ec07ab1a7b70505 |
| tree | d9c3442cc516a3a272ee63ab0a7aaf149d90ac88 |
| parent | 442933936ae41aa18968031ff245e8908411c3a2 |
This is possible when e.g. calling CreateSymbolicLink on a FAT32 filesystem1 files changed, 1 insertions(+), 0 deletions(-)
lib/std/os/windows.zig+1| ... | ... | @@ -236,6 +236,7 @@ pub fn DeviceIoControl( |
| 236 | 236 | .SUCCESS => {}, |
| 237 | 237 | .PRIVILEGE_NOT_HELD => return error.AccessDenied, |
| 238 | 238 | .ACCESS_DENIED => return error.AccessDenied, |
| 239 | .INVALID_DEVICE_REQUEST => return error.AccessDenied, // Not supported by the underlying filesystem | |
| 239 | 240 | .INVALID_PARAMETER => unreachable, |
| 240 | 241 | else => return unexpectedStatus(rc), |
| 241 | 242 | } |