From 589e838fa036a37d8296f8fdfeb25dad9870751e Mon Sep 17 00:00:00 2001 From: Akash Date: Fri, 23 Oct 2015 14:54:45 +0530 Subject: [PATCH] GUI: Initialize all class members CID 146980 (#1 of 1): Uninitialized pointer field (UNINIT_CTOR)2. uninit_member: Non-static class member m_panel is not initialized in this constructor nor in any functions that it calls. --- pcsx2/gui/Panels/PluginSelectorPanel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/gui/Panels/PluginSelectorPanel.cpp b/pcsx2/gui/Panels/PluginSelectorPanel.cpp index ec1d4118e7..99e3f433fe 100644 --- a/pcsx2/gui/Panels/PluginSelectorPanel.cpp +++ b/pcsx2/gui/Panels/PluginSelectorPanel.cpp @@ -227,7 +227,7 @@ protected: IMPLEMENT_DYNAMIC_CLASS(ApplyPluginsDialog, WaitForTaskDialog) ApplyPluginsDialog::ApplyPluginsDialog( BaseApplicableConfigPanel* panel ) - : WaitForTaskDialog( _("Applying settings...") ) +: WaitForTaskDialog(_("Applying settings...")), m_panel(NULL) { GetSysExecutorThread().PostEvent( new SysExecEvent_ApplyPlugins( this, m_sync ) ); }