From: nds Date: Fri, 17 Nov 2017 09:02:36 +0000 (+0300) Subject: Issue #2282 Conditional jump or move depends on uninitialised value(s): patch is... X-Git-Tag: V_2.10.0RC~156 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=1b05a876c9ad8f9a2dbaaf6317c35b73c768c8c5;p=modules%2Fshaper.git Issue #2282 Conditional jump or move depends on uninitialised value(s): patch is integrated on the master. --- diff --git a/src/XGUI/XGUI_OperationMgr.cpp b/src/XGUI/XGUI_OperationMgr.cpp index ad655723d..cfdf13912 100644 --- a/src/XGUI/XGUI_OperationMgr.cpp +++ b/src/XGUI/XGUI_OperationMgr.cpp @@ -59,7 +59,7 @@ public: /// \param theParent the parent to be deleted when the parent is deleted /// \param theOperationMgr the class to perform deletion XGUI_ShortCutListener(QObject* theParent, XGUI_OperationMgr* theOperationMgr) - : QObject(theParent), myOperationMgr(theOperationMgr) + : QObject(theParent), myOperationMgr(theOperationMgr), myIsActive(false) { qApp->installEventFilter(this); }