diff options
author | bar@mysql.com <> | 2005-10-13 13:38:15 +0500 |
---|---|---|
committer | bar@mysql.com <> | 2005-10-13 13:38:15 +0500 |
commit | 4e0b80d9afab699a8781637f3a0994f6fdc50527 (patch) | |
tree | 91141566e8ce4f6f871fd857616d6bd97d0e41ec /strings | |
parent | 85243ffd70cabe407df855495cf0420a57015777 (diff) | |
parent | 8682dffc68911d35382649866b7cfb1bc095bf96 (diff) | |
download | mariadb-git-4e0b80d9afab699a8781637f3a0994f6fdc50527.tar.gz |
Merge abarkov@bk-internal.mysql.com:/home/bk/mysql-4.1
into mysql.com:/usr/home/bar/mysql-4.1.b12476
Diffstat (limited to 'strings')
-rw-r--r-- | strings/ctype-tis620.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/strings/ctype-tis620.c b/strings/ctype-tis620.c index dcb0e0525b4..35cf10f1bcc 100644 --- a/strings/ctype-tis620.c +++ b/strings/ctype-tis620.c @@ -498,7 +498,7 @@ static uint thai2sortable(uchar *tstr, uint len) l2bias use to control position weight of l2char example (*=l2char) XX*X must come before X*XX */ - memcpy_overlap((char*) p, (char*) (p+1), tlen-1); + memmove((char*) p, (char*) (p+1), tlen-1); tstr[len-1]= l2bias + t_ctype0[1]- L2_GARAN +1; p--; continue; |