util.crand: Clarify that lua_error does not return

This commit is contained in:
Kim Alvefur 2017-02-25 18:12:24 +01:00
parent 8be8bbf789
commit 4707d5665d

View file

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