Commit 8682dffc authored by ramil@mysql.com's avatar ramil@mysql.com
Browse files

memcpy_overlap() replaced with memmove() during the merging.

parent 2ffbe011
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;