Rollup merge of #126854 - devnexen:std_unix_os_fallback_upd, r=Mark-Simulacrum

std::unix::os::home_dir: fallback's optimisation.

we're using a guaranteed initialised field on success.
This commit is contained in:
Matthias Krüger 2024-06-24 06:27:16 +02:00 committed by GitHub
commit 9892b3e9fe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -738,17 +738,17 @@ unsafe fn fallback() -> Option<OsString> {
n => n as usize,
};
let mut buf = Vec::with_capacity(amt);
let mut passwd: libc::passwd = mem::zeroed();
let mut p = mem::MaybeUninit::<libc::passwd>::uninit();
let mut result = ptr::null_mut();
match libc::getpwuid_r(
libc::getuid(),
&mut passwd,
p.as_mut_ptr(),
buf.as_mut_ptr(),
buf.capacity(),
&mut result,
) {
0 if !result.is_null() => {
let ptr = passwd.pw_dir as *const _;
let ptr = (*result).pw_dir as *const _;
let bytes = CStr::from_ptr(ptr).to_bytes().to_vec();
Some(OsStringExt::from_vec(bytes))
}