From: Date: March 23 2005 2:39pm Subject: bk commit into 5.0 tree (ramil:1.1847) BUG#9309 List-Archive: http://lists.mysql.com/internals/23332 X-Bug: 9309 Message-Id: <200503231339.j2NDdQEg050668@gw.mysql.r18.ru> Below is the list of changes that have just been committed into a local 5.0 repository of ram. When ram does a push these changes will be propagated to the main repository and, within 24 hours after the push, to the public repository. For information on how to access the public repository see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html ChangeSet 1.1847 05/03/23 17:39:20 ramil@stripped +1 -0 A fix (bug #9309: Wrong order in INFORMATION_SCHEMA) strings/ctype-utf8.c 1.86 05/03/23 17:39:15 ramil@stripped +1 -1 A fix (bug #9309: Wrong order in INFORMATION_SCHEMA) We should clear the last byte, not the next one. # This is a BitKeeper patch. What follows are the unified diffs for the # set of deltas contained in the patch. The rest of the patch, the part # that BitKeeper cares about, is below these diffs. # User: ramil # Host: gw.mysql.r18.ru # Root: /usr/home/ram/work/5.0 --- 1.85/strings/ctype-utf8.c 2005-03-19 04:12:22 +04:00 +++ 1.86/strings/ctype-utf8.c 2005-03-23 17:39:15 +04:00 @@ -2276,7 +2276,7 @@ } if (dst < de) /* Clear the last byte, if "dstlen" was an odd number */ - *de= 0x00; + *dst= 0x00; return dstlen; }