forked from qt-creator/qt-creator
debugger: Slightly improve compile fix for linux.
Reviewed-by: Friedemann Kleint
This commit is contained in:
@@ -1402,13 +1402,12 @@ unsigned CdbEngine::examineStopReason(const QByteArray &messageIn,
|
||||
if (reason == "exception") {
|
||||
WinException exception;
|
||||
exception.fromGdbMI(stopReason);
|
||||
QString description;
|
||||
QString description = exception.toString();
|
||||
#ifdef Q_OS_WIN
|
||||
// It is possible to hit on a startup trap while stepping (if something
|
||||
// pulls DLLs. Avoid showing a 'stopped' Message box.
|
||||
if (exception.exceptionCode == winExceptionStartupCompleteTrap)
|
||||
return StopNotifyStop;
|
||||
description = exception.toString();
|
||||
// WOW 64 breakpoint: just report in log and continue
|
||||
if (exception.exceptionCode == winExceptionWX86Breakpoint) {
|
||||
*message = description;
|
||||
|
Reference in New Issue
Block a user