diff --git a/src/plugins/debugger/debuggerprotocol.cpp b/src/plugins/debugger/debuggerprotocol.cpp index 30250f27d76..8a751aa4879 100644 --- a/src/plugins/debugger/debuggerprotocol.cpp +++ b/src/plugins/debugger/debuggerprotocol.cpp @@ -198,6 +198,9 @@ QString GdbMi::parseCString(const QChar *&from, const QChar *to) void GdbMi::parseValue(const QChar *&from, const QChar *to) { + if (from == to) + return; + //qDebug() << "parseValue: " << QString(from, to - from); switch (from->unicode()) { case '{':