mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.crand: Clarify that lua_error does not return
This commit is contained in:
parent
8be8bbf789
commit
4707d5665d
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ int Lrandom(lua_State *L) {
|
|||
#elif defined(WITH_OPENSSL)
|
||||
if(!RAND_status()) {
|
||||
lua_pushliteral(L, "OpenSSL PRNG not seeded");
|
||||
lua_error(L);
|
||||
return lua_error(L);
|
||||
}
|
||||
|
||||
ret = RAND_bytes(buf, len);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue