debugger: make parsing of new dumper outpuit a bit more robust

This commit is contained in:
hjk
2009-10-16 10:28:03 +02:00
parent e1c8bb407f
commit 73aa3e2164
3 changed files with 8 additions and 2 deletions

View File

@@ -431,7 +431,7 @@ QString decodeData(const QByteArray &ba, int encoding)
case 5: { // base64 encoded 8 bit data, without quotes (see 1)
return quoteUnprintableLatin1(QByteArray::fromBase64(ba));
}
case 7: { // %04x endoded 16 bit data
case 7: { // %04x encoded 16 bit data
const QChar doubleQuote(QLatin1Char('"'));
const QByteArray decodedBa = QByteArray::fromHex(ba);
//qDebug() << quoteUnprintableLatin1(decodedBa) << "\n\n";