mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-28 03:20:11 +01:00
fixed GH #1549: Latin2Encoding and 0xFF
This commit is contained in:
@@ -157,6 +157,7 @@ int Latin2Encoding::convert(int ch, unsigned char* bytes, int length) const
|
|||||||
case 0x016f: if (bytes && length >= 1) *bytes = 0xf9; return 1;
|
case 0x016f: if (bytes && length >= 1) *bytes = 0xf9; return 1;
|
||||||
case 0x0171: if (bytes && length >= 1) *bytes = 0xfb; return 1;
|
case 0x0171: if (bytes && length >= 1) *bytes = 0xfb; return 1;
|
||||||
case 0x0163: if (bytes && length >= 1) *bytes = 0xfe; return 1;
|
case 0x0163: if (bytes && length >= 1) *bytes = 0xfe; return 1;
|
||||||
|
case 0x02d9: if (bytes && length >= 1) *bytes = 0xff; return 1;
|
||||||
default: return 0;
|
default: return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user