summaryrefslogtreecommitdiff
path: root/strings
diff options
context:
space:
mode:
authorunknown <ramil@mysql.com>2005-10-13 13:25:07 +0500
committerunknown <ramil@mysql.com>2005-10-13 13:25:07 +0500
commit3657f600df5a4ccff72c73070bffb7132cc27381 (patch)
tree6dfe2dc8f2518d2f3c0b42b383c7640ca1bcfa3f /strings
parent5de7ba46e808d81516f26578433c161c38028c7b (diff)
downloadmariadb-git-3657f600df5a4ccff72c73070bffb7132cc27381.tar.gz
memcpy_overlap() replaced with memmove() during the merging.
strings/ctype-tis620.c: memcpy_overlap() replaced with memmove() during the merge.
Diffstat (limited to 'strings')
-rw-r--r--strings/ctype-tis620.c2
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;