From 974388c1315742f3270075fc48472751649029f0 Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen <oswald.buddenhagen@nokia.com> Date: Thu, 7 May 2009 12:11:27 +0200 Subject: [PATCH] less confusing --- src/plugins/debugger/gdbengine.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/plugins/debugger/gdbengine.cpp b/src/plugins/debugger/gdbengine.cpp index 40ae13eb8ba..9560efc7a0d 100644 --- a/src/plugins/debugger/gdbengine.cpp +++ b/src/plugins/debugger/gdbengine.cpp @@ -973,17 +973,14 @@ void GdbEngine::handleAsyncOutput(const GdbMi &data) //MAC: bool isFirstStop = data.findChild("bkptno").data() == "1"; //!MAC: startSymbolName == data.findChild("frame").findChild("func") if (m_waitingForFirstBreakpointToBeHit) { + m_waitingForFirstBreakpointToBeHit = false; + // If the executable dies already that early we might get something // like stdout:49*stopped,reason="exited",exit-code="0177" // This is handled now above. qq->notifyInferiorStopped(); - m_waitingForFirstBreakpointToBeHit = false; - // - // this will "continue" if done m_waitingForBreakpointSynchronizationToContinue = true; - // - // that's the "early stop" handleAqcuiredInferior(); return; } -- GitLab