See:
Subject: [HACKERS] bugs with certain Asian multibyte charsets
From: Tatsuo Ishii <ishii@sraoss.co.jp>
To: pgsql-hackers@postgresql.org
Date: Sat, 24 Dec 2005 18:25:33 +0900 (JST)
for more details.
/*
* conversion functions between pg_wchar and multibyte streams.
* Tatsuo Ishii
- * $Id: wchar.c,v 1.30.2.1 2003/01/11 06:59:30 ishii Exp $
+ * $Id: wchar.c,v 1.30.2.2 2005/12/24 12:08:10 ishii Exp $
*
* WIN1250 client encoding updated by Pavel Behal
*
{
from++;
*to = *from++ << 8;
- *to |= 0x3f & *from++;
+ *to |= 0x7f & *from++;
len -= 3;
}
else if ((*from & 0x80) && len >= 2)
if (*from == SS2 && len >= 3)
{
from++;
- *to = 0x3f00 & (*from++ << 8);
+ *to = 0x7f00 & (*from++ << 8);
*to = *from++;
len -= 3;
}
{
from++;
*to = *from++ << 8;
- *to |= 0x3f & *from++;
+ *to |= 0x7f & *from++;
len -= 3;
}
else if ((*from & 0x80) && len >= 2)
{
from++;
*to = *from++ << 8;
- *to |= 0x3f & *from++;
+ *to |= 0x7f & *from++;
len -= 3;
}
else if ((*from & 0x80) && len >= 2)