Suppress an integer-overflow warning.

This commit is contained in:
Tom Lane 2007-07-12 21:17:09 +00:00
parent 292e4c6190
commit 4dbbef2845

View File

@ -1,7 +1,7 @@
/* /*
* conversion functions between pg_wchar and multibyte streams. * conversion functions between pg_wchar and multibyte streams.
* Tatsuo Ishii * Tatsuo Ishii
* $PostgreSQL: pgsql/src/backend/utils/mb/wchar.c,v 1.62 2007/04/15 10:56:25 ishii Exp $ * $PostgreSQL: pgsql/src/backend/utils/mb/wchar.c,v 1.63 2007/07/12 21:17:09 tgl Exp $
* *
* WIN1250 client encoding updated by Pavel Behal * WIN1250 client encoding updated by Pavel Behal
* *
@ -280,7 +280,7 @@ static int pg_euctw2wchar_with_len
if (*from == SS2 && len >= 4) /* code set 2 */ if (*from == SS2 && len >= 4) /* code set 2 */
{ {
from++; from++;
*to = (SS2 << 24) | (*from++ << 16); *to = (((uint32) SS2) << 24) | (*from++ << 16);
*to |= *from++ << 8; *to |= *from++ << 8;
*to |= *from++; *to |= *from++;
len -= 4; len -= 4;