diff options
Diffstat (limited to 'src/modules/rtv')
-rw-r--r-- | src/modules/rtv/rtv.c | 4 |
1 files changed, 1 insertions, 3 deletions
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; |