Skip to content

Commit 9f7c8b8

Browse files
authored
Fix Unexpected error for 1453 on Windows (ziglang#23729)
1 parent cc381d5 commit 9f7c8b8

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lib/std/os/windows.zig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -695,6 +695,7 @@ pub fn WriteFile(
695695
.LOCK_VIOLATION => return error.LockViolation,
696696
.NETNAME_DELETED => return error.ConnectionResetByPeer,
697697
.ACCESS_DENIED => return error.AccessDenied,
698+
.WORKING_SET_QUOTA => return error.SystemResources,
698699
else => |err| return unexpectedError(err),
699700
}
700701
}

0 commit comments

Comments
 (0)