mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-14 05:16:25 -04:00
CLEANUP: hlua: use hlua_unref() instead of luaL_unref()
Replacing some luaL_unref(, LUA_REGISTRYINDEX) calls with hlua_unref() which is simpler to use and more explicit.
This commit is contained in:
parent
4fdf8b58f2
commit
fde199dddc
1 changed files with 2 additions and 2 deletions
|
|
@ -10641,7 +10641,7 @@ static void hlua_filter_deinit_per_thread(struct proxy *px, struct flt_conf *fco
|
|||
|
||||
state_id = reg_flt_to_stack_id(conf->reg);
|
||||
L = hlua_states[state_id];
|
||||
luaL_unref(L, LUA_REGISTRYINDEX, conf->ref[state_id]);
|
||||
hlua_unref(L, conf->ref[state_id]);
|
||||
}
|
||||
|
||||
static int hlua_filter_init(struct proxy *px, struct flt_conf *fconf)
|
||||
|
|
@ -10836,7 +10836,7 @@ static void hlua_filter_delete(struct stream *s, struct filter *filter)
|
|||
{
|
||||
struct hlua_flt_ctx *flt_ctx = filter->ctx;
|
||||
|
||||
luaL_unref(s->hlua->T, LUA_REGISTRYINDEX, flt_ctx->ref);
|
||||
hlua_unref(s->hlua->T, flt_ctx->ref);
|
||||
hlua_ctx_destroy(flt_ctx->hlua[0]);
|
||||
hlua_ctx_destroy(flt_ctx->hlua[1]);
|
||||
pool_free(pool_head_hlua_flt_ctx, flt_ctx);
|
||||
|
|
|
|||
Loading…
Reference in a new issue