From: Alan T. DeKok Date: Sat, 11 Mar 2023 13:53:02 +0000 (-0500) Subject: fix for env_data X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=acd4a8b6b354b9accaa38ab2f9a168bd78ff77e8;p=thirdparty%2Ffreeradius-server.git fix for env_data --- diff --git a/src/modules/rlm_lua/rlm_lua.c b/src/modules/rlm_lua/rlm_lua.c index 75efecc6342..1ce22bf19c7 100644 --- a/src/modules/rlm_lua/rlm_lua.c +++ b/src/modules/rlm_lua/rlm_lua.c @@ -119,7 +119,7 @@ static int mod_detach(module_detach_ctx_t const *mctx) &(rlm_lua_thread_t){ .interpreter = inst->interpreter }, - NULL), + NULL, NULL), NULL, inst->func_detach); } lua_close(inst->interpreter); @@ -148,7 +148,7 @@ static int mod_instantiate(module_inst_ctx_t const *mctx) &(rlm_lua_thread_t){ .interpreter = inst->interpreter }, - NULL), + NULL, NULL), NULL, inst->func_instantiate); }