mirror of
https://github.com/MariaDB/server.git
synced 2026-05-03 13:45:34 +02:00
Small fix
sql/item_strfunc.cc: that's the right fix
This commit is contained in:
parent
9eff35de53
commit
4c0d915652
1 changed files with 2 additions and 2 deletions
|
|
@ -2721,7 +2721,7 @@ String *Item_func_uuid::val_str(String *str)
|
|||
{
|
||||
ulong tmp=sql_rnd_with_mutex();
|
||||
uchar mac[6];
|
||||
unsigned int i;
|
||||
int i;
|
||||
if (my_gethwaddr(mac))
|
||||
{
|
||||
/*
|
||||
|
|
@ -2731,7 +2731,7 @@ String *Item_func_uuid::val_str(String *str)
|
|||
randominit() here
|
||||
*/
|
||||
randominit(&uuid_rand, tmp + (ulong)current_thd, tmp + query_id);
|
||||
for (i=0; i < sizeof(mac); i++)
|
||||
for (i=0; i < (int)sizeof(mac); i++)
|
||||
mac[i]=(uchar)(my_rnd(&uuid_rand)*255);
|
||||
}
|
||||
s=clock_seq_and_node_str+sizeof(clock_seq_and_node_str)-1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue