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:
Kim Alvefur 2015-04-26 19:50:24 +02:00
parent 2064173f3b
commit 38a580bfeb

View file

@ -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