Fixed bad serialization code in ScanResult.
Bug: 26964162 Change-Id: Ie9ad65936ab5173533773e5a711bcb81799acfb5
This commit is contained in:
@@ -569,6 +569,9 @@ public class ScanResult implements Parcelable {
|
|||||||
dest.writeString(anqpLines.get(i));
|
dest.writeString(anqpLines.get(i));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
dest.writeInt(0);
|
||||||
|
}
|
||||||
if (anqpElements != null) {
|
if (anqpElements != null) {
|
||||||
dest.writeInt(anqpElements.length);
|
dest.writeInt(anqpElements.length);
|
||||||
for (AnqpInformationElement element : anqpElements) {
|
for (AnqpInformationElement element : anqpElements) {
|
||||||
@@ -647,7 +650,7 @@ public class ScanResult implements Parcelable {
|
|||||||
int len = in.readInt();
|
int len = in.readInt();
|
||||||
byte[] payload = new byte[len];
|
byte[] payload = new byte[len];
|
||||||
in.readByteArray(payload);
|
in.readByteArray(payload);
|
||||||
sr.anqpElements[n] =
|
sr.anqpElements[i] =
|
||||||
new AnqpInformationElement(vendorId, elementId, payload);
|
new AnqpInformationElement(vendorId, elementId, payload);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user