am 035a52f3: Merge "IccOpenLogicalChannelResponse: Single character fix." into lmp-dev

* commit '035a52f36ee400cbc99270efca9e0e991ad1de97':
  IccOpenLogicalChannelResponse: Single character fix.
This commit is contained in:
Shishir Agrawal
2014-08-01 02:13:36 +00:00
committed by Android Git Automerger

View File

@@ -93,7 +93,7 @@ public class IccOpenLogicalChannelResponse implements Parcelable {
public void writeToParcel(Parcel out, int flags) {
out.writeInt(mChannel);
out.writeInt(mStatus);
if (mSelectResponse != null & mSelectResponse.length > 0) {
if (mSelectResponse != null && mSelectResponse.length > 0) {
out.writeInt(mSelectResponse.length);
out.writeByteArray(mSelectResponse);
} else {