From de31679ace61a9ac06e9c58982f5fb66764abb1b Mon Sep 17 00:00:00 2001 From: Paul Harrison Date: Thu, 6 Jun 2013 22:24:12 +0100 Subject: [PATCH] MythBrowser: fix Coverity ID 1026727 Uninitialized scalar field In WebPage::?WebPage(): A scalar field is not initialized by the constructor. --- mythplugins/mythbrowser/mythbrowser/webpage.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mythplugins/mythbrowser/mythbrowser/webpage.cpp b/mythplugins/mythbrowser/mythbrowser/webpage.cpp index 2795cec66d9..214c47f087a 100644 --- a/mythplugins/mythbrowser/mythbrowser/webpage.cpp +++ b/mythplugins/mythbrowser/mythbrowser/webpage.cpp @@ -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)),