authorgravatar for 178673413+psbob@users.noreply.github.compsbob <178673413+psbob@users.noreply.github.com> 2025-04-30 23:48:16+01:00
committergravatar for noreply@github.comGitHub <noreply@github.com> 2025-04-30 22:48:16+00:00
log9f7c8b8b1bafe91bf5035c06f72de967a92f6a6c
treeabf5527216de94491901af74441d883523481ddc
parentcc381d56a6461c2aa8df8eae3d9f3ad206204ecf
signaturebadge-check Signed by PGP key B5690EEEBB952194

Fix Unexpected error for 1453 on Windows (#23729)


1 files changed, 1 insertions(+), 0 deletions(-)

lib/std/os/windows.zig+1
...@@ -695,6 +695,7 @@ pub fn WriteFile(...@@ -695,6 +695,7 @@ pub fn WriteFile(
695 .LOCK_VIOLATION => return error.LockViolation,695 .LOCK_VIOLATION => return error.LockViolation,
696 .NETNAME_DELETED => return error.ConnectionResetByPeer,696 .NETNAME_DELETED => return error.ConnectionResetByPeer,
697 .ACCESS_DENIED => return error.AccessDenied,697 .ACCESS_DENIED => return error.AccessDenied,
698 .WORKING_SET_QUOTA => return error.SystemResources,
698 else => |err| return unexpectedError(err),699 else => |err| return unexpectedError(err),
699 }700 }
700 }701 }