We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa8bf70 commit b4e66b7Copy full SHA for b4e66b7
compiler/rustc_codegen_ssa/src/back/command.rs
@@ -167,7 +167,8 @@ impl Command {
167
//
168
// [1]: https://docs.microsoft.com/en-us/windows/win32/api/processthreadsapi/nf-processthreadsapi-createprocessa
169
// [2]: https://devblogs.microsoft.com/oldnewthing/?p=41553
170
- let estimated_command_line_len = self.args.iter().map(|a| a.len()).sum::<usize>();
+ let estimated_command_line_len =
171
+ self.args.iter().fold(0, |acc, a| acc.saturating_add(a.as_encoded_bytes().len()));
172
estimated_command_line_len > 1024 * 6
173
} else if cfg!(unix) {
174
// On Unix the limits can be gargantuan anyway so we're pretty
0 commit comments