Commit 8717453208

psbob <178673413+psbob@users.noreply.github.com>
2025-05-01 00:48:16
Fix Unexpected error for 1453 on Windows (#23729)
1 parent 8a5f834
Changed files (1)
lib
lib/std/os/windows.zig
@@ -687,6 +687,7 @@ pub fn WriteFile(
             .INVALID_HANDLE => return error.NotOpenForWriting,
             .LOCK_VIOLATION => return error.LockViolation,
             .NETNAME_DELETED => return error.ConnectionResetByPeer,
+            .WORKING_SET_QUOTA => return error.SystemResources,
             else => |err| return unexpectedError(err),
         }
     }