Fixed bug in my_uuid() that caused failures on hpux and ia64
This commit is contained in:
parent
fa60971037
commit
ce068186f6
@ -108,7 +108,7 @@ void my_uuid_init(ulong seed1, ulong seed2)
|
|||||||
*/
|
*/
|
||||||
/* purecov: begin inspected */
|
/* purecov: begin inspected */
|
||||||
my_rnd_init(&uuid_rand, (ulong) (seed2+ now/2), (ulong) (now+rand()));
|
my_rnd_init(&uuid_rand, (ulong) (seed2+ now/2), (ulong) (now+rand()));
|
||||||
for (i=0; i < sizeof(mac); i++)
|
for (i=0; i < array_elements(uuid_suffix) -2 ; i++)
|
||||||
mac[i]= (uchar)(my_rnd(&uuid_rand)*255);
|
mac[i]= (uchar)(my_rnd(&uuid_rand)*255);
|
||||||
/* purecov: end */
|
/* purecov: end */
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user