From aad1ec3be8ad4688f151aead653348a0f7302c0f Mon Sep 17 00:00:00 2001 From: Paul Harrison Date: Mon, 3 Jun 2013 23:04:12 +0100 Subject: [PATCH] MythBrowser: fix Coverity ID 1026726 Uninitialized pointer field In MythBrowser::MythBrowser(): Several pointer fields are not initialized in the constructor. --- mythplugins/mythbrowser/mythbrowser/mythbrowser.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mythplugins/mythbrowser/mythbrowser/mythbrowser.cpp b/mythplugins/mythbrowser/mythbrowser/mythbrowser.cpp index 1572df648f3..bb8a0324565 100644 --- a/mythplugins/mythbrowser/mythbrowser/mythbrowser.cpp +++ b/mythplugins/mythbrowser/mythbrowser/mythbrowser.cpp @@ -25,7 +25,8 @@ MythBrowser::MythBrowser(MythScreenStack *parent, m_progressBar(NULL), m_titleText(NULL), m_statusText(NULL), m_currentBrowser(-1), m_zoom(zoom), m_menuPopup(NULL), - m_defaultFavIcon(NULL) + m_defaultFavIcon(NULL), m_backButton(NULL), + m_forwardButton(NULL), m_exitButton(NULL) { GetMythMainWindow()->PauseIdleTimer(true); }