[automerger] Verify last array's length in readFromParcel am: 3b8bc2e450 am: 71478241eb
Change-Id: I5fb0625286289c43644612528d25fb3f90f6ec7b
This commit is contained in:
@@ -18,6 +18,7 @@ package com.android.internal.app.procstats;
|
||||
|
||||
import android.os.Build;
|
||||
import android.os.Parcel;
|
||||
import android.util.EventLog;
|
||||
import android.util.Slog;
|
||||
import libcore.util.EmptyArray;
|
||||
|
||||
@@ -529,6 +530,12 @@ public class SparseMappingTable {
|
||||
readCompactedLongArray(in, array, size);
|
||||
mLongs.add(array);
|
||||
}
|
||||
// Verify that last array's length is consistent with writeToParcel
|
||||
if (N > 0 && mLongs.get(N - 1).length != mNextIndex) {
|
||||
EventLog.writeEvent(0x534e4554, "73252178", -1, "");
|
||||
throw new IllegalStateException("Expected array of length " + mNextIndex + " but was "
|
||||
+ mLongs.get(N - 1).length);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user