From 4bb310bef69fe04c7c5d64797821adb860e883c9 Mon Sep 17 00:00:00 2001 From: David Hampton Date: Mon, 25 Feb 2019 16:10:33 -0500 Subject: [PATCH] Fix initialization of ThemeChooser::m_downloadState. Fixes coverity issue 1442853. --- mythtv/programs/mythfrontend/themechooser.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mythtv/programs/mythfrontend/themechooser.h b/mythtv/programs/mythfrontend/themechooser.h index 22df27f6edb..00b67fad9f7 100644 --- a/mythtv/programs/mythfrontend/themechooser.h +++ b/mythtv/programs/mythfrontend/themechooser.h @@ -87,8 +87,8 @@ class ThemeChooser : public MythScreenType QMap m_themeFileNameInfos; QMap m_themeStatuses; ThemeInfo *m_downloadTheme {nullptr}; - QString m_downloadFile {dsIdle}; - DownloadState m_downloadState; + QString m_downloadFile; + DownloadState m_downloadState {dsIdle}; MythDialogBox *m_popupMenu {nullptr}; };