From 3657f600df5a4ccff72c73070bffb7132cc27381 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 13 Oct 2005 13:25:07 +0500 Subject: memcpy_overlap() replaced with memmove() during the merging. strings/ctype-tis620.c: memcpy_overlap() replaced with memmove() during the merge. --- strings/ctype-tis620.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'strings') 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; -- cgit v1.2.1