From 3be04728379a2187a7c7e7068e71bc69f5d37700 Mon Sep 17 00:00:00 2001 From: yossizap Date: Fri, 20 Dec 2019 12:20:41 +0000 Subject: [PATCH] Fix remote debug crash after the first session --- src/widgets/DebugActions.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/widgets/DebugActions.cpp b/src/widgets/DebugActions.cpp index 8743ab3f..a282e2be 100644 --- a/src/widgets/DebugActions.cpp +++ b/src/widgets/DebugActions.cpp @@ -231,6 +231,7 @@ void DebugActions::onAttachedRemoteDebugger(bool successfully) attachRemoteDialog(); } else { delete remoteDialog; + remoteDialog = nullptr; attachRemoteDebugger(); } }