We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c8ebf1 commit b9fe367Copy full SHA for b9fe367
library/std/src/sys/windows/process.rs
@@ -917,9 +917,8 @@ fn make_proc_thread_attribute_list(
917
)
918
};
919
920
- let mut proc_thread_attribute_list = ProcThreadAttributeList(
921
- vec![MaybeUninit::uninit(); required_size].into_boxed_slice(),
922
- );
+ let mut proc_thread_attribute_list =
+ ProcThreadAttributeList(vec![MaybeUninit::uninit(); required_size].into_boxed_slice());
923
924
// Once we've allocated the necessary memory, it's safe to invoke
925
// `InitializeProcThreadAttributeList` to properly initialize the list.
0 commit comments