mirror of
https://github.com/MariaDB/server.git
synced 2025-01-27 01:04:19 +01:00
memcpy_overlap() replaced with memmove() during the merging.
strings/ctype-tis620.c: memcpy_overlap() replaced with memmove() during the merge.
This commit is contained in:
parent
5de7ba46e8
commit
3657f600df
1 changed files with 1 additions and 1 deletions
|
@ -498,7 +498,7 @@ static uint thai2sortable(uchar *tstr, uint len)
|
||||||
l2bias use to control position weight of l2char
|
l2bias use to control position weight of l2char
|
||||||
example (*=l2char) XX*X must come before X*XX
|
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;
|
tstr[len-1]= l2bias + t_ctype0[1]- L2_GARAN +1;
|
||||||
p--;
|
p--;
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Add table
Reference in a new issue