diff options
author | Kim Alvefur <zash@zash.se> | 2017-01-08 14:21:08 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-01-08 14:21:08 +0100 |
commit | 5f26a96cc471f320b763f00f4dea785500d7ebb3 (patch) | |
tree | cc0b5c0edcee314b6909b3b18bed137ed8722358 /util-src/crand.c | |
parent | 311fc4e4dd37b88e78889d17d53727e0b5876685 (diff) | |
download | prosody-5f26a96cc471f320b763f00f4dea785500d7ebb3.tar.gz prosody-5f26a96cc471f320b763f00f4dea785500d7ebb3.zip |
util-src: Make C modules assert that the Lua runtime matches what it was compiled for
Diffstat (limited to 'util-src/crand.c')
-rw-r--r-- | util-src/crand.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/util-src/crand.c b/util-src/crand.c index fbdec8f8..177511ce 100644 --- a/util-src/crand.c +++ b/util-src/crand.c @@ -130,6 +130,9 @@ int Lseed(lua_State *L) { #endif int luaopen_util_crand(lua_State *L) { +#if (LUA_VERSION_NUM > 501) + luaL_checkversion(L); +#endif lua_newtable(L); lua_pushcfunction(L, Lrandom); lua_setfield(L, -2, "bytes"); |