|
|||||||||||
|
bk commit into 6.0 tree (istruewing:1.2701) BUG#32802
From: Ingo Struewing <ingo(at)mysql.com>
Date: Wed Nov 28 2007 - 04:19:18 EST
ChangeSet@1.2701, 2007-11-28 10:19:14+01:00, istruewing@stella.local +1 -0 Bug#32802 - Compiler warning in ctype-ucs2.c Compiler warned about possible use of uninitialized 'wc'. Added LINT_INIT(wc). strings/ctype-ucs2.c@1.77, 2007-11-28 10:19:13+01:00, istruewing@stella.local +1 -0 Bug#32802 - Compiler warning in ctype-ucs2.c Added LINT_INIT(wc). diff -Nrup a/strings/ctype-ucs2.c b/strings/ctype-ucs2.c --- a/strings/ctype-ucs2.c 2007-10-24 09:27:44 +02:00 +++ b/strings/ctype-ucs2.c 2007-11-28 10:19:13 +01:00@@ -1368,6 +1368,7 @@ my_strnxfrm_utf16(CHARSET_INFO *cs,
const uchar *se= src + srclen;
NULL : cs->caseinfo;
+ LINT_INIT(wc);
for (; src < se && dst < de && nweights; nweights--) { -- MySQL Code Commits Mailing List For list archives: http://lists.mysql.com/commits To unsubscribe: http://lists.mysql.com/commits?unsub=lists@pantek.comReceived on Wed Nov 28 04:19:32 2007 This archive was generated by hypermail 2.1.8 : Thu Jul 03 2008 - 13:57:58 EDT |
||||||||||
|
|||||||||||