From 0709ef51867ccfcc81b578f309bec0b567d46039 Mon Sep 17 00:00:00 2001 From: Paul Harrison Date: Sat, 8 Jun 2013 23:07:49 +0100 Subject: [PATCH] MythNetVision: Fix coverity ID 1026734 Uninitialized pointer field In NetTree::NetTree(): Several pointer fields are not initialized in the constructor. --- mythplugins/mythnetvision/mythnetvision/nettree.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mythplugins/mythnetvision/mythnetvision/nettree.cpp b/mythplugins/mythnetvision/mythnetvision/nettree.cpp index 8bf2a8c4832..932ee3dd46f 100644 --- a/mythplugins/mythnetvision/mythnetvision/nettree.cpp +++ b/mythplugins/mythnetvision/mythnetvision/nettree.cpp @@ -46,6 +46,8 @@ namespace NetTree::NetTree(DialogType type, MythScreenStack *parent, const char *name) : MythScreenType(parent, name), m_siteMap(NULL), m_siteButtonList(NULL), + m_siteGeneric(NULL), m_rssGeneric(NULL), + m_searchGeneric(NULL), m_currentNode(NULL), m_noSites(NULL), m_thumbImage(NULL), m_downloadable(NULL), m_busyPopup(NULL), m_menuPopup(NULL), m_popupStack(),