Merge "Avoid division by zero error when AppOps history is empty." into rvc-dev am: 18f643d4f2
Change-Id: I3245fc8ecaa5757578b7afb5418de25b879f39fc
This commit is contained in:
@@ -2951,7 +2951,7 @@ public class StatsPullAtomService extends SystemService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
int processHistoricalOps(HistoricalOps histOps, int atomTag, List<StatsEvent> pulledData) {
|
int processHistoricalOps(HistoricalOps histOps, int atomTag, List<StatsEvent> pulledData) {
|
||||||
int counter = 0;
|
int counter = 1;
|
||||||
for (int uidIdx = 0; uidIdx < histOps.getUidCount(); uidIdx++) {
|
for (int uidIdx = 0; uidIdx < histOps.getUidCount(); uidIdx++) {
|
||||||
final HistoricalUidOps uidOps = histOps.getUidOpsAt(uidIdx);
|
final HistoricalUidOps uidOps = histOps.getUidOpsAt(uidIdx);
|
||||||
final int uid = uidOps.getUid();
|
final int uid = uidOps.getUid();
|
||||||
|
|||||||
Reference in New Issue
Block a user