From b626a097c15f63051da86a30cd4e3bb441b13f06 Mon Sep 17 00:00:00 2001 From: David Schulz Date: Fri, 19 Oct 2018 14:24:55 +0200 Subject: [PATCH] Debugger: always report that the debugger stopped when hitting a bp ...not only if the response id is known. Fixes stepping out with cdb.. Change-Id: I07dfc2b89703d5d0df80a30a658274529a68d18c Reviewed-by: hjk --- src/plugins/debugger/cdb/cdbengine.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/plugins/debugger/cdb/cdbengine.cpp b/src/plugins/debugger/cdb/cdbengine.cpp index 4327dce2552..ee2f15e3610 100644 --- a/src/plugins/debugger/cdb/cdbengine.cpp +++ b/src/plugins/debugger/cdb/cdbengine.cpp @@ -1747,8 +1747,9 @@ unsigned CdbEngine::examineStopReason(const GdbMi &stopReason, *message = bp->msgWatchpointByExpressionTriggered(bp->expression(), tid); else *message = bp->msgBreakpointTriggered(tid); - rc |= StopReportStatusMessage|StopNotifyStop; + rc |= StopReportStatusMessage; } + rc |= StopNotifyStop; return rc; } if (reason == "exception") {