diff options
author | unknown <holyfoot@mysql.com> | 2005-05-10 02:59:28 +0500 |
---|---|---|
committer | unknown <holyfoot@mysql.com> | 2005-05-10 02:59:28 +0500 |
commit | 86b773a87e0e7e4ea55bcc4388fba42eb83949b3 (patch) | |
tree | 5ac35c4db9dfbfb7df9e07f32d2f950af2b2ea13 /strings | |
parent | a891ab1155d9f43619646d8d0b81c4549b3a73cf (diff) | |
parent | 0b3512991d040373b98d60fa8e95e15aa07ead04 (diff) | |
download | mariadb-git-86b773a87e0e7e4ea55bcc4388fba42eb83949b3.tar.gz |
Merge mysql.com:/home/hf/work/mysql-4.1.ssj
into mysql.com:/home/hf/work/mysql-5.0.clean
BitKeeper/etc/logging_ok:
auto-union
strings/ctype-sjis.c:
Auto merged
Diffstat (limited to 'strings')
-rw-r--r-- | strings/ctype-sjis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/strings/ctype-sjis.c b/strings/ctype-sjis.c index 9b7fd5097fa..a7d75da42c9 100644 --- a/strings/ctype-sjis.c +++ b/strings/ctype-sjis.c @@ -4591,7 +4591,7 @@ uint my_well_formed_len_sjis(CHARSET_INFO *cs __attribute__((unused)), { const char *b0= b; *error= 0; - while (pos && b < e) + while (pos-- && b < e) { if ((uchar) b[0] < 128) { |