diff options
author | Kim Alvefur <zash@zash.se> | 2014-09-16 21:56:18 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2014-09-16 21:56:18 +0200 |
commit | c57e98cd7debd8d8ea46159cbbf2eb7597544d4c (patch) | |
tree | 7a2f8f679b522db52d967a34eb806b8f73ba59c4 /util-src/encodings.c | |
parent | a685dfb89e5c8895a767011961d2289810b72a1e (diff) | |
download | prosody-c57e98cd7debd8d8ea46159cbbf2eb7597544d4c.tar.gz prosody-c57e98cd7debd8d8ea46159cbbf2eb7597544d4c.zip |
util-src/*.c: Don't create globals when loaded
Diffstat (limited to 'util-src/encodings.c')
-rw-r--r-- | util-src/encodings.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/util-src/encodings.c b/util-src/encodings.c index b9b6160a..3a074949 100644 --- a/util-src/encodings.c +++ b/util-src/encodings.c @@ -361,17 +361,12 @@ static const luaL_Reg Reg_idna[] = /***************** end *****************/ -static const luaL_Reg Reg[] = -{ - { NULL, NULL } -}; - LUALIB_API int luaopen_util_encodings(lua_State *L) { #ifdef USE_STRINGPREP_ICU init_icu(); #endif - luaL_register(L, "encodings", Reg); + lua_newtable(L); lua_pushliteral(L, "base64"); lua_newtable(L); |