diff options
author | Michael Widenius <monty@askmonty.org> | 2010-01-04 20:31:26 +0200 |
---|---|---|
committer | Michael Widenius <monty@askmonty.org> | 2010-01-04 20:31:26 +0200 |
commit | ce068186f698872e6d7c7f475ffa2bca664f070d (patch) | |
tree | c745049d83b8c15be1e090d263fbabee3f7ce797 /mysys/my_uuid.c | |
parent | fa609710375a68c244179e58e53b2980387a84d0 (diff) | |
download | mariadb-git-ce068186f698872e6d7c7f475ffa2bca664f070d.tar.gz |
Fixed bug in my_uuid() that caused failures on hpux and ia64
Diffstat (limited to 'mysys/my_uuid.c')
-rw-r--r-- | mysys/my_uuid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/my_uuid.c b/mysys/my_uuid.c index d1e8331aaa1..f115806b4e9 100644 --- a/mysys/my_uuid.c +++ b/mysys/my_uuid.c @@ -108,7 +108,7 @@ void my_uuid_init(ulong seed1, ulong seed2) */ /* purecov: begin inspected */ 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); /* purecov: end */ } |