Fix wrong deref
This commit is contained in:
parent
ce5e49f86f
commit
e1bc9af9eb
1 changed files with 2 additions and 2 deletions
|
@ -600,7 +600,7 @@ impl Wtf8 {
|
|||
#[inline]
|
||||
fn final_lead_surrogate(&self) -> Option<u16> {
|
||||
match self.bytes {
|
||||
[.., 0xED, b2 @ 0xA0..=0xAF, b3] => Some(decode_surrogate(*b2, *b3)),
|
||||
[.., 0xED, b2 @ 0xA0..=0xAF, b3] => Some(decode_surrogate(b2, b3)),
|
||||
_ => None,
|
||||
}
|
||||
}
|
||||
|
@ -608,7 +608,7 @@ impl Wtf8 {
|
|||
#[inline]
|
||||
fn initial_trail_surrogate(&self) -> Option<u16> {
|
||||
match self.bytes {
|
||||
[0xED, b2 @ 0xB0..=0xBF, b3, ..] => Some(decode_surrogate(*b2, *b3)),
|
||||
[0xED, b2 @ 0xB0..=0xBF, b3, ..] => Some(decode_surrogate(b2, b3)),
|
||||
_ => None,
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue