Merge pull request #953 from ihsinme/patch-1
simple fix for the range of the condition.
This commit is contained in:
commit
4f6c723d3b
|
@ -803,7 +803,7 @@ static void EncodeIbm858( uint c, StreamOut* out )
|
||||||
/* Convert from Latin0 (aka Latin9, ISO-8859-15) to Unicode */
|
/* Convert from Latin0 (aka Latin9, ISO-8859-15) to Unicode */
|
||||||
static uint DecodeLatin0(uint c)
|
static uint DecodeLatin0(uint c)
|
||||||
{
|
{
|
||||||
if (159 < c && c < 191)
|
if (163 < c && c < 191)
|
||||||
{
|
{
|
||||||
switch (c)
|
switch (c)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue