Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6c37741e authored by HIRANO Takahito's avatar HIRANO Takahito
Browse files

Could not handle iso-2022-jp streams which contain continuous escape


sequences.

Signed-off-by: default avatarHIRANO Takahito <hiranotaka@zng.info>
parent 0118f64f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ class Iso2022JpToShiftJisInputStream extends InputStream {
        }

        int in1 = mIn.read();
        if (in1 == 0x1b) {
        while (in1 == 0x1b) {
            in1 = mIn.read();
            if (in1 == '(') {
                in1 = mIn.read();