Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 52ef129d authored by Jing Ji's avatar Jing Ji Committed by Android (Google) Code Review
Browse files

Merge "Check the null pointer in ProcStats" into tm-qpr-dev

parents c1735a1f 5ecd7186
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -473,7 +473,10 @@ public final class ProcessState {
                }
            }
            mCurCombinedState = state;
            mStats.mUidStates.get(mUid).updateCombinedState(state, now);
            final UidState uidState = mStats.mUidStates.get(mUid);
            if (uidState != null) {
                uidState.updateCombinedState(state, now);
            }
        }
    }