From 44d47f95aae1a731d765ffd2a147e8835f716c17 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Thu, 25 Feb 2021 18:44:43 -0500 Subject: [PATCH] fix bug in utf8 streaming decode --- terminalemulator.d | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/terminalemulator.d b/terminalemulator.d index 2ce53e5..454a23e 100644 --- a/terminalemulator.d +++ b/terminalemulator.d @@ -2048,22 +2048,17 @@ class TerminalEmulator { // one byte thing, do nothing more... } else { // the number of bytes in the sequence is the number of set bits in the first byte... - uint shifted = 0; - bool there = false; ubyte checkingBit = 7; - while(checkingBit) { - if(!there && b & (1 << checkingBit)) - utf8BytesRemaining++; - else - there = true; - if(there) - shifted |= b & (1 << checkingBit); + while(b & (1 << checkingBit)) { + utf8BytesRemaining++; checkingBit--; } + uint shifted = b & ((1 << checkingBit) - 1); utf8BytesRemaining--; // since this current byte counts too currentUtf8Shift = utf8BytesRemaining * 6; - shifted <<= (currentUtf8Shift + checkingBit); + + shifted <<= currentUtf8Shift; utf8Sequence = cast(dchar) shifted; utf8SequenceBufferPosition = 0;