diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2023-08-14 05:44:26 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2023-08-14 05:44:26 -0700 |
commit | b58ffca50742350f05978fe1e698da4e452d8176 (patch) | |
tree | 813bb0b22cfa0911e48fef9724d512c8575bf518 /src/modules/rtv | |
parent | 141c6491ad3e578bfaf082424a27d11d05418622 (diff) |
modules/rtv: add blurb about tokchannels leak
Not bothering with fixing this because rtv needs its channels
setup redone altogether to better resemble something like
rkt::scenes, but allowing partial specification of the settings
as a means of controlling specific settings while randomizing the
rest.
Diffstat (limited to 'src/modules/rtv')
-rw-r--r-- | src/modules/rtv/rtv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/rtv/rtv.c b/src/modules/rtv/rtv.c index 5853296..14bc09b 100644 --- a/src/modules/rtv/rtv.c +++ b/src/modules/rtv/rtv.c @@ -518,7 +518,7 @@ static int rtv_setup(const til_settings_t *settings, til_setting_t **res_setting til_get_modules(&modules, &n_modules); - tokchannels = strdup(channels); + tokchannels = strdup(channels); /* TODO FIXME: this is getting leaked currently */ if (!tokchannels) { til_setup_free(&setup->til_setup); |