Skip to content

Commit

Permalink
multiboot2: StringError::MissingNull => StringError::MissingNul
Browse files Browse the repository at this point in the history
This aligns the name with the inner error. In the codebase, however, we use
"null". NUL often refers to the ANSI character `0`/NUL and null or NULL to
a zero pointer, i.e., to nothing. For now, we keep null everywhere except
for the StringError::MissingNul.
  • Loading branch information
phip1611 committed Sep 21, 2023
1 parent 9ee178a commit f012064
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions multiboot2/src/tag.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use core::str::Utf8Error;
#[derive(Debug, PartialEq, Eq, Clone)]
pub enum StringError {
/// There is no terminating null-byte, although the spec requires one.
MissingNull(core::ffi::FromBytesUntilNulError),
MissingNul(core::ffi::FromBytesUntilNulError),
/// The sequence until the first NULL byte is not valid UTF-8.
Utf8(Utf8Error),
}
Expand All @@ -27,7 +27,7 @@ impl Display for StringError {
impl core::error::Error for StringError {
fn source(&self) -> Option<&(dyn core::error::Error + 'static)> {
match self {
StringError::MissingNull(e) => Some(e),
StringError::MissingNul(e) => Some(e),
StringError::Utf8(e) => Some(e),
}
}
Expand Down Expand Up @@ -66,8 +66,7 @@ impl Tag {
/// Parses the provided byte sequence as Multiboot string, which maps to a
/// [`str`].
pub fn parse_slice_as_string(bytes: &[u8]) -> Result<&str, StringError> {
let cstr =
core::ffi::CStr::from_bytes_until_nul(bytes).map_err(StringError::MissingNull)?;
let cstr = core::ffi::CStr::from_bytes_until_nul(bytes).map_err(StringError::MissingNul)?;

cstr.to_str().map_err(StringError::Utf8)
}
Expand Down Expand Up @@ -148,7 +147,7 @@ mod tests {
// empty slice is invalid
assert!(matches!(
Tag::parse_slice_as_string(&[]),
Err(StringError::MissingNull(_))
Err(StringError::MissingNul(_))
));
// empty string is fine
assert_eq!(Tag::parse_slice_as_string(&[0x00]), Ok(""));
Expand All @@ -160,7 +159,7 @@ mod tests {
// reject missing null
assert!(matches!(
Tag::parse_slice_as_string(b"hello"),
Err(StringError::MissingNull(_))
Err(StringError::MissingNul(_))
));
// must not include final null
assert_eq!(Tag::parse_slice_as_string(b"hello\0"), Ok("hello"));
Expand Down

0 comments on commit f012064

Please sign in to comment.