Skip to content

Commit

Permalink
MythBrowser: fix Coverity ID 1026727 Uninitialized scalar field
Browse files Browse the repository at this point in the history
In WebPage::?WebPage(): A scalar field is not initialized by the constructor.
  • Loading branch information
Paul Harrison committed Jun 6, 2013
1 parent d925745 commit de31679
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions mythplugins/mythbrowser/mythbrowser/webpage.cpp
Expand Up @@ -48,6 +48,8 @@ WebPage::WebPage(MythBrowser *parent, MythUIWebBrowser *browser)

m_browser = browser;

m_active = false;

connect(m_browser, SIGNAL(loadStarted()),
this, SLOT(slotLoadStarted()));
connect(m_browser, SIGNAL(loadFinished(bool)),
Expand Down

0 comments on commit de31679

Please sign in to comment.