Merge "Fix security hole in GateKeeperResponse." into mnc-dev

This commit is contained in:
TreeHugger Robot
2017-08-15 19:30:53 +00:00
committed by Android (Google) Code Review

View File

@@ -85,6 +85,8 @@ public final class GateKeeperResponse implements Parcelable {
if (mPayload != null) {
dest.writeInt(mPayload.length);
dest.writeByteArray(mPayload);
} else {
dest.writeInt(0);
}
}
}