Suppress an integer-overflow warning.
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 12 Jul 2007 21:17:09 +0000 (21:17 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 12 Jul 2007 21:17:09 +0000 (21:17 +0000)
src/backend/utils/mb/wchar.c

index 65007d916e445739accb6c59e3a65729583a75e1..cc8d4b58624a7c4d916249d6a3c42af21c9f8ae3 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * conversion functions between pg_wchar and multibyte streams.
  * 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
  *
@@ -280,7 +280,7 @@ static int  pg_euctw2wchar_with_len
        if (*from == SS2 && len >= 4)   /* code set 2 */
        {
            from++;
-           *to = (SS2 << 24) | (*from++ << 16);
+           *to = (((uint32) SS2) << 24) | (*from++ << 16);
            *to |= *from++ << 8;
            *to |= *from++;
            len -= 4;