util.random: Coerce error to string (thanks waqas)

In theory this could happen in an EOF condition, which should be
impossible with a read from /dev/urandom.
This commit is contained in:
Kim Alvefur 2019-05-18 18:51:25 +02:00
parent 60c9443a7b
commit c42ccf1bcc

View file

@ -14,7 +14,7 @@ local urandom, urandom_err = io.open("/dev/urandom", "r");
local function bytes(n)
local data, err = urandom:read(n);
if not data then
error("Unable to retrieve data from secure random number generator (/dev/urandom): "..err);
error("Unable to retrieve data from secure random number generator (/dev/urandom): "..tostring(err));
end
return data;
end