Skip to content

Commit

Permalink
MythBrowser: fix Coverity ID 1026726 Uninitialized pointer field
Browse files Browse the repository at this point in the history
In MythBrowser::MythBrowser(): Several pointer fields are not initialized
in the constructor.
  • Loading branch information
Paul Harrison committed Jun 3, 2013
1 parent 696dd68 commit aad1ec3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mythplugins/mythbrowser/mythbrowser/mythbrowser.cpp
Expand Up @@ -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);
}
Expand Down

0 comments on commit aad1ec3

Please sign in to comment.