Skip to main content
summaryrefslogtreecommitdiffstats
path: root/debug
diff options
context:
space:
mode:
authorAlena Laskavaia2008-11-21 18:04:55 +0000
committerAlena Laskavaia2008-11-21 18:04:55 +0000
commitd33651d578c887288532839bc1a28c498fb0e03b (patch)
treef76ef60484e38f45d44de5e1e2fe39aa7df5ac54 /debug
parent6dd52f784d751064c06aa384cf26757f185efe10 (diff)
downloadorg.eclipse.cdt-d33651d578c887288532839bc1a28c498fb0e03b.tar.gz
org.eclipse.cdt-d33651d578c887288532839bc1a28c498fb0e03b.tar.xz
org.eclipse.cdt-d33651d578c887288532839bc1a28c498fb0e03b.zip
PR: 255946 -Console output incorrect. Escape charecters should not interpret.
https://bugs.eclipse.org/bugs/show_bug.cgi?id=255946
Diffstat (limited to 'debug')
-rw-r--r--debug/org.eclipse.cdt.debug.mi.core/mi/org/eclipse/cdt/debug/mi/core/RxThread.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/debug/org.eclipse.cdt.debug.mi.core/mi/org/eclipse/cdt/debug/mi/core/RxThread.java b/debug/org.eclipse.cdt.debug.mi.core/mi/org/eclipse/cdt/debug/mi/core/RxThread.java
index 9aafae122f5..16cb62e4af5 100644
--- a/debug/org.eclipse.cdt.debug.mi.core/mi/org/eclipse/cdt/debug/mi/core/RxThread.java
+++ b/debug/org.eclipse.cdt.debug.mi.core/mi/org/eclipse/cdt/debug/mi/core/RxThread.java
@@ -357,7 +357,7 @@ public class RxThread extends Thread {
OutputStream target = session.getMIInferior().getPipedOutputStream();
if (target != null) {
MITargetStreamOutput out = (MITargetStreamOutput) stream;
- String str = out.getString();
+ String str = out.getCString();
if (str != null) {
try {
target.write(str.getBytes());

Back to the top