Merge "support chinese character for ota package's path" am: b8877a981a

am: 7acb5f8e10

Change-Id: I89e7821c20ac131c4d7800264f175e16e945517e
This commit is contained in:
Elliott Hughes
2017-09-08 18:24:19 +00:00
committed by android-build-merger

View File

@@ -285,8 +285,9 @@ public final class RecoverySystemService extends SystemService {
// Send the BCB commands if it's to setup BCB. // Send the BCB commands if it's to setup BCB.
if (isSetup) { if (isSetup) {
dos.writeInt(command.length()); byte[] cmdUtf8 = command.getBytes("UTF-8");
dos.writeBytes(command); dos.writeInt(cmdUtf8.length);
dos.write(cmdUtf8, 0, cmdUtf8.length);
dos.flush(); dos.flush();
} }