From 4707d5665df4179e0b02a520ff36ad51a7b9d9be Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Sat, 25 Feb 2017 18:12:24 +0100 Subject: util.crand: Clarify that lua_error does not return --- util-src/crand.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'util-src') diff --git a/util-src/crand.c b/util-src/crand.c index e7caf683..f3fa00ea 100644 --- a/util-src/crand.c +++ b/util-src/crand.c @@ -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); -- cgit v1.2.3