Skip to content

Commit 003bb06

Browse files
Rollup merge of #118807 - SUPERCILEX:allo, r=the8472
Remove an allocation in min_stack
2 parents 551e79d + af8dfde commit 003bb06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: library/std/src/sys_common/thread.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pub fn min_stack() -> usize {
88
0 => {}
99
n => return n - 1,
1010
}
11-
let amt = env::var("RUST_MIN_STACK").ok().and_then(|s| s.parse().ok());
11+
let amt = env::var_os("RUST_MIN_STACK").and_then(|s| s.to_str().and_then(|s| s.parse().ok()));
1212
let amt = amt.unwrap_or(imp::DEFAULT_MIN_STACK_SIZE);
1313

1414
// 0 is our sentinel value, so ensure that we'll never see 0 after

0 commit comments

Comments
 (0)