mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util-src: Make C modules assert that the Lua runtime matches what it was compiled for
This commit is contained in:
parent
ef391bf6c4
commit
5b10d245e3
9 changed files with 27 additions and 0 deletions
|
@ -197,6 +197,9 @@ int rb_gc(lua_State* L) {
|
|||
}
|
||||
|
||||
int luaopen_util_ringbuffer(lua_State* L) {
|
||||
#if (LUA_VERSION_NUM > 501)
|
||||
luaL_checkversion(L);
|
||||
#endif
|
||||
if(luaL_newmetatable(L, "ringbuffer_mt")) {
|
||||
lua_pushcfunction(L, rb_tostring);
|
||||
lua_setfield(L, -2, "__tostring");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue