Rollup merge of #118807 - SUPERCILEX:allo, r=the8472
Remove an allocation in min_stack
This commit is contained in:
commit
f712d73108
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ pub fn min_stack() -> usize {
|
||||||
0 => {}
|
0 => {}
|
||||||
n => return n - 1,
|
n => return n - 1,
|
||||||
}
|
}
|
||||||
let amt = env::var("RUST_MIN_STACK").ok().and_then(|s| s.parse().ok());
|
let amt = env::var_os("RUST_MIN_STACK").and_then(|s| s.to_str().and_then(|s| s.parse().ok()));
|
||||||
let amt = amt.unwrap_or(imp::DEFAULT_MIN_STACK_SIZE);
|
let amt = amt.unwrap_or(imp::DEFAULT_MIN_STACK_SIZE);
|
||||||
|
|
||||||
// 0 is our sentinel value, so ensure that we'll never see 0 after
|
// 0 is our sentinel value, so ensure that we'll never see 0 after
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue