authorgravatar for 178673413+psbob@users.noreply.github.compsbob <178673413+psbob@users.noreply.github.com> 2025-04-30 23:48:16+01:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-05-01 21:31:58+02:00
log8717453208bd1f32258d0cf5cdc41e76c0a3dbeb
tree1edf59d8543fb46744e7c05a65a24d4844efea00
parent8a5f8342405c2877dfe87bb235b6925a548b5f18
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

Fix Unexpected error for 1453 on Windows (#23729)


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

lib/std/os/windows.zig+1
...@@ -687,6 +687,7 @@ pub fn WriteFile(...@@ -687,6 +687,7 @@ pub fn WriteFile(
687 .INVALID_HANDLE => return error.NotOpenForWriting,687 .INVALID_HANDLE => return error.NotOpenForWriting,
688 .LOCK_VIOLATION => return error.LockViolation,688 .LOCK_VIOLATION => return error.LockViolation,
689 .NETNAME_DELETED => return error.ConnectionResetByPeer,689 .NETNAME_DELETED => return error.ConnectionResetByPeer,
690 .WORKING_SET_QUOTA => return error.SystemResources,
690 else => |err| return unexpectedError(err),691 else => |err| return unexpectedError(err),
691 }692 }
692 }693 }