From f08356c4d204b07847a1d550b2acda44a897f970 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Sat, 19 Mar 2022 12:24:43 -0700 Subject: *: use til_module_destroy_context() Mechanically replaced ad-hoc til_module_t.destroy_context() invocations with helper calls. --- src/modules/rtv/rtv.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/modules/rtv') diff --git a/src/modules/rtv/rtv.c b/src/modules/rtv/rtv.c index bd48eb3..47905ec 100644 --- a/src/modules/rtv/rtv.c +++ b/src/modules/rtv/rtv.c @@ -145,9 +145,7 @@ static void setup_next_channel(rtv_context_t *ctxt, unsigned ticks) if (ctxt->channel->cumulative_time >= rtv_context_duration) { ctxt->channel->cumulative_time = 0; - if (ctxt->channel->module->destroy_context) - ctxt->channel->module->destroy_context(ctxt->channel->module_ctxt); - ctxt->channel->module_ctxt = NULL; + ctxt->channel->module_ctxt = til_module_destroy_context(ctxt->channel->module, ctxt->channel->module_ctxt); free(ctxt->channel->settings); ctxt->channel->settings = NULL; -- cgit v1.2.1