Skip to content

Commit b4e66b7

Browse files
committed
fix: avoid overflow in linker E2BIG check
1 parent aa8bf70 commit b4e66b7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

compiler/rustc_codegen_ssa/src/back/command.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,8 @@ impl Command {
167167
//
168168
// [1]: https://docs.microsoft.com/en-us/windows/win32/api/processthreadsapi/nf-processthreadsapi-createprocessa
169169
// [2]: https://devblogs.microsoft.com/oldnewthing/?p=41553
170-
let estimated_command_line_len = self.args.iter().map(|a| a.len()).sum::<usize>();
170+
let estimated_command_line_len =
171+
self.args.iter().fold(0, |acc, a| acc.saturating_add(a.as_encoded_bytes().len()));
171172
estimated_command_line_len > 1024 * 6
172173
} else if cfg!(unix) {
173174
// On Unix the limits can be gargantuan anyway so we're pretty

0 commit comments

Comments
 (0)