From 5b10d245e368cd54f33928665b282462a52fd5d8 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Sun, 8 Jan 2017 14:21:08 +0100 Subject: util-src: Make C modules assert that the Lua runtime matches what it was compiled for --- util-src/net.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'util-src/net.c') diff --git a/util-src/net.c b/util-src/net.c index 3ccc7618..18f3d27a 100644 --- a/util-src/net.c +++ b/util-src/net.c @@ -125,6 +125,9 @@ static int lc_local_addresses(lua_State* L) { } int luaopen_util_net(lua_State* L) { +#if (LUA_VERSION_NUM > 501) + luaL_checkversion(L); +#endif luaL_Reg exports[] = { { "local_addresses", lc_local_addresses }, { NULL, NULL } -- cgit v1.2.3