OSDN Git Service

Shell console: fix bug in shell output stream
[android-x86/packages-apps-CMFileManager.git] / src / com / cyanogenmod / filemanager / console / shell / ShellConsole.java
index 00a65be..1ecdc82 100644 (file)
@@ -1236,7 +1236,7 @@ public abstract class ShellConsole extends Console implements Program.ProgramLis
 
             if (match != null) {
                 partial.reset();
-                partial.write(bytes, match[0], match[1]);
+                partial.write(bytes, 0, match[0]);
             }
         }
         return ret;