From 58796158a86aa224979e16421591ffaa546ecba1 Mon Sep 17 00:00:00 2001 From: David Schulz Date: Tue, 12 Nov 2013 10:49:50 +0100 Subject: [PATCH] Debugger: Remove state check on cdb interrupt. When breakpoints are inserted we are also calling this function, but the state isn't set to InferiorStopRequested. Change-Id: If448e7596c9c08cebdc8b2ed5b23df0e232fd817 Reviewed-by: Friedemann Kleint --- src/plugins/debugger/cdb/cdbengine.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/plugins/debugger/cdb/cdbengine.cpp b/src/plugins/debugger/cdb/cdbengine.cpp index 00cf0137cfd..b70e6d41078 100644 --- a/src/plugins/debugger/cdb/cdbengine.cpp +++ b/src/plugins/debugger/cdb/cdbengine.cpp @@ -1198,7 +1198,6 @@ void CdbEngine::doInterruptInferior(SpecialStopMode sm) { showMessage(QString::fromLatin1("Interrupting process %1...").arg(inferiorPid()), LogMisc); - QTC_ASSERT(state() == InferiorStopRequested, qDebug() << state(); notifyInferiorStopFailed(); return;); QTC_ASSERT(!m_signalOperation, notifyInferiorStopFailed(); return;); m_signalOperation = startParameters().device->signalOperation(); m_specialStopMode = sm;