Fix SmallCStr conversion from CStr

This commit is contained in:
Eric Huss
2024-02-14 18:40:53 -08:00
parent ee9c7c940c
commit 217e5e484d
2 changed files with 9 additions and 1 deletions

View File

@@ -82,6 +82,6 @@ impl<'a> FromIterator<&'a str> for SmallCStr {
impl From<&ffi::CStr> for SmallCStr {
fn from(s: &ffi::CStr) -> Self {
Self { data: SmallVec::from_slice(s.to_bytes()) }
Self { data: SmallVec::from_slice(s.to_bytes_with_nul()) }
}
}