mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.dns: Make sure argument to math.randomseed does not overflow a 32 bit *signed* int (blame Lua). Closes #439
This commit is contained in:
parent
2064173f3b
commit
38a580bfeb
1 changed files with 1 additions and 1 deletions
|
@ -225,7 +225,7 @@ end
|
|||
|
||||
|
||||
function dns.random(...) -- - - - - - - - - - - - - - - - - - - dns.random
|
||||
math.randomseed(math.floor(10000*socket.gettime()) % 0x100000000);
|
||||
math.randomseed(math.floor(10000*socket.gettime()) % 0x80000000);
|
||||
dns.random = math.random;
|
||||
return dns.random(...);
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue