1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

Badly format MI lines put in TargetStream

This commit is contained in:
Alain Magloire 2003-07-10 19:24:29 +00:00
parent 2449709449
commit 7dfa13d225

View file

@ -233,6 +233,11 @@ public class MIParser {
}
stream.setCString(translateCString(new FSB(buffer)));
oob = stream;
} else {
// Badly format MI line, just pass it to the user as target stream
MIStreamRecord stream = new MITargetStreamOutput();
stream.setCString(buffer.toString() + "\n");
oob = stream;
}
return oob;
}