From 00aaa80dbdfed41ea9704f4482d5a766b8725733 Mon Sep 17 00:00:00 2001 From: "ramil@mysql.com" <> Date: Wed, 23 Mar 2005 17:39:20 +0400 Subject: [PATCH] A fix (bug #9309: Wrong order in INFORMATION_SCHEMA) --- strings/ctype-utf8.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strings/ctype-utf8.c b/strings/ctype-utf8.c index 3b52577c358..cfb169043dc 100644 --- a/strings/ctype-utf8.c +++ b/strings/ctype-utf8.c @@ -2276,7 +2276,7 @@ static int my_strnxfrm_utf8(CHARSET_INFO *cs, } if (dst < de) /* Clear the last byte, if "dstlen" was an odd number */ - *de= 0x00; + *dst= 0x00; return dstlen; }