util-src: Make C modules assert that the Lua runtime matches what it was compiled for

This commit is contained in:
Kim Alvefur 2017-01-08 14:21:08 +01:00
parent ef391bf6c4
commit 5b10d245e3
9 changed files with 27 additions and 0 deletions

View file

@ -524,6 +524,9 @@ static const luaL_Reg Reg_idna[] = {
/***************** end *****************/
LUALIB_API int luaopen_util_encodings(lua_State* L) {
#if (LUA_VERSION_NUM > 501)
luaL_checkversion(L);
#endif
#ifdef USE_STRINGPREP_ICU
init_icu();
#endif