Debugger: CDB: Don't add a task for the wow64 exception.

Task-number: QTCREATORBUG-8886

Change-Id: Idf08562c58e1f02b09ef6ff7a9fb899f1516f9ae
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
This commit is contained in:
David Schulz
2013-03-14 10:55:40 +01:00
parent 1aa8fd88c7
commit fda503748d

View File

@@ -2410,6 +2410,9 @@ void CdbEngine::handleExtensionMessage(char t, int token, const QByteArray &what
GdbMi gdbmi;
gdbmi.fromString(message);
exception.fromGdbMI(gdbmi);
// Don't show the Win32 x86 emulation subsystem breakpoint hit exception.
if (exception.exceptionCode == winExceptionWX86Breakpoint)
return;
const QString message = exception.toString(true);
showStatusMessage(message);
// Report C++ exception in application output as well.