From 1b05a876c9ad8f9a2dbaaf6317c35b73c768c8c5 Mon Sep 17 00:00:00 2001 From: nds Date: Fri, 17 Nov 2017 12:02:36 +0300 Subject: [PATCH] Issue #2282 Conditional jump or move depends on uninitialised value(s): patch is integrated on the master. --- src/XGUI/XGUI_OperationMgr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.39.2