aboutsummaryrefslogtreecommitdiffstats
path: root/util-src/table.c
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-01-08 14:21:08 +0100
committerKim Alvefur <zash@zash.se>2017-01-08 14:21:08 +0100
commit5b10d245e368cd54f33928665b282462a52fd5d8 (patch)
treecc0b5c0edcee314b6909b3b18bed137ed8722358 /util-src/table.c
parentef391bf6c46128a67c5cb408496ea51b6f0d3736 (diff)
downloadprosody-5b10d245e368cd54f33928665b282462a52fd5d8.tar.gz
prosody-5b10d245e368cd54f33928665b282462a52fd5d8.zip
util-src: Make C modules assert that the Lua runtime matches what it was compiled for
Diffstat (limited to 'util-src/table.c')
-rw-r--r--util-src/table.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/util-src/table.c b/util-src/table.c
index 63415541..93acae65 100644
--- a/util-src/table.c
+++ b/util-src/table.c
@@ -21,6 +21,9 @@ static int Lpack(lua_State* L) {
int luaopen_util_table(lua_State* L) {
+#if (LUA_VERSION_NUM > 501)
+ luaL_checkversion(L);
+#endif
lua_newtable(L);
lua_pushcfunction(L, Lcreate_table);
lua_setfield(L, -2, "create");