From 9f7c8b8b1bafe91bf5035c06f72de967a92f6a6c Mon Sep 17 00:00:00 2001 From: psbob <178673413+psbob@users.noreply.github.com> Date: Wed, 30 Apr 2025 23:48:16 +0100 Subject: [PATCH] Fix Unexpected error for 1453 on Windows (#23729) --- lib/std/os/windows.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/std/os/windows.zig b/lib/std/os/windows.zig index e24617645a..b5ef57249e 100644 --- a/lib/std/os/windows.zig +++ b/lib/std/os/windows.zig @@ -695,6 +695,7 @@ pub fn WriteFile( .LOCK_VIOLATION => return error.LockViolation, .NETNAME_DELETED => return error.ConnectionResetByPeer, .ACCESS_DENIED => return error.AccessDenied, + .WORKING_SET_QUOTA => return error.SystemResources, else => |err| return unexpectedError(err), } }