mirror of
https://github.com/MariaDB/server.git
synced 2026-04-22 00:05:33 +02:00
After merge fixes
This commit is contained in:
parent
560d7bcdd0
commit
4ba94cc3f9
3 changed files with 6 additions and 6 deletions
|
|
@ -1570,8 +1570,8 @@ ulong mysql_hex_string(char *to, const char *from, ulong length)
|
|||
|
||||
for (end= from + length; from < end; from++)
|
||||
{
|
||||
*to++= _dig_vec[((unsigned char) *from) >> 4];
|
||||
*to++= _dig_vec[((unsigned char) *from) & 0x0F];
|
||||
*to++= _dig_vec_upper[((unsigned char) *from) >> 4];
|
||||
*to++= _dig_vec_upper[((unsigned char) *from) & 0x0F];
|
||||
}
|
||||
*to= '\0';
|
||||
return (ulong) (to-to0);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue