Merge "[RTT] ParcelableRttResults parcel code fix" into mnc-dev

This commit is contained in:
Etan Cohen
2018-02-07 22:41:26 +00:00
committed by Android (Google) Code Review

View File

@@ -730,8 +730,8 @@ public class RttManager {
}
dest.writeByte(result.LCR.id);
if (result.LCR.id != (byte) 0xFF) {
dest.writeInt((byte) result.LCR.data.length);
dest.writeByte(result.LCR.id);
dest.writeByte((byte) result.LCR.data.length);
dest.writeByteArray(result.LCR.data);
}
}
} else {