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:
parent
2449709449
commit
7dfa13d225
1 changed files with 5 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue