diff options
Diffstat (limited to 'util-src')
-rw-r--r-- | util-src/crand.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |