wstr: Fix small logic error when decoding UTF-8

This commit is contained in:
EmperorBale 2022-07-15 14:18:38 -07:00 committed by Mike Welsh
parent bc31014f93
commit dda97dbccb
1 changed files with 7 additions and 5 deletions

View File

@ -155,11 +155,13 @@ impl<'a> Iterator for AvmUtf8Decoder<'a> {
ch <<= 6;
ch |= (*b & (u8::MAX >> 2)) as u32;
}
if ch <= 128 {
self.index += 1;
ch = first as u32;
} else if !fail {
self.index += mb_count as usize + 1;
if !fail {
if ch <= 128 {
self.index += 1;
ch = first as u32;
} else {
self.index += mb_count as usize + 1;
}
}
}
None => {