mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
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:
parent
60c9443a7b
commit
c42ccf1bcc
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue