Merge "Fix NPE in AppOpsService." into rvc-dev am: b19aa9888f

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/11938963

Change-Id: I3f25ffeca4b5ccfb19b0a7911519cf7f8ee9a67a
This commit is contained in:
TreeHugger Robot
2020-06-22 22:28:38 +00:00
committed by Automerger Merge Worker

View File

@@ -3744,7 +3744,7 @@ public class AppOpsService extends IAppOpsService.Stub {
mHandler.sendMessage(PooledLambda.obtainMessage(
AppOpsService::notifyOpChangedForAllPkgsInUid,
this, code, uidState.uid, true, null));
} else {
} else if (uidState.pkgOps != null) {
final ArraySet<ModeCallback> callbacks = mOpModeWatchers.get(code);
if (callbacks != null) {
for (int cbi = callbacks.size() - 1; cbi >= 0; cbi--) {