From b8dc0ecac302e8732ff9c10a2c46ab16a97ce6a8 Mon Sep 17 00:00:00 2001 From: max_10 Date: Thu, 16 Jul 2020 20:07:12 +0200 Subject: [PATCH] osd_setup: fix segfault when deactivating evenlogos in the start assistant Signed-off-by: GetAway Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/4421943d27ec76e792cca501f62fae6230268fb9 Author: max_10 Date: 2020-07-16 (Thu, 16 Jul 2020) Origin message was: ------------------ - osd_setup: fix segfault when deactivating evenlogos in the start assistant Signed-off-by: GetAway --- src/gui/osd_setup.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/osd_setup.cpp b/src/gui/osd_setup.cpp index 9d8e22330..0efe908d2 100644 --- a/src/gui/osd_setup.cpp +++ b/src/gui/osd_setup.cpp @@ -1276,7 +1276,7 @@ void COsdSetup::showOsdChannellogosSetup(CMenuWidget *menu_channellogos) menu_channellogos->addItem(mc); // show eventlogos - mc = new CMenuOptionChooser(LOCALE_CHANNELLIST_SHOW_EVENTLOGO, &g_settings.channellist_show_eventlogo, OPTIONS_OFF0_ON1_OPTIONS, OPTIONS_OFF0_ON1_OPTION_COUNT, g_settings.channellist_show_channellogo, this); + mc = new CMenuOptionChooser(LOCALE_CHANNELLIST_SHOW_EVENTLOGO, &g_settings.channellist_show_eventlogo, OPTIONS_OFF0_ON1_OPTIONS, OPTIONS_OFF0_ON1_OPTION_COUNT, g_settings.channellist_show_channellogo); mc->setHint("", LOCALE_MENU_HINT_CHANNELLIST_SHOW_EVENTLOGO); menu_channellogos->addItem(mc); channellogoNotifier->addItem(mc);