Merge "Fixing possible NullPointerException" into udc-dev

This commit is contained in:
Kunal Malhotra
2023-02-24 00:35:58 +00:00
committed by Android (Google) Code Review

View File

@@ -316,6 +316,10 @@ public class ForegroundServiceTypeLoggerModule {
// then we should care, otherwise we assume
// it's not related to any FGS
UidState uidState = mUids.get(uid);
if (uidState == null) {
Log.w(TAG, "API event end called before start!");
return -1;
}
if (uidState.mOpenWithFgsCount.contains(apiType)) {
// are there any calls that started with an FGS?
if (uidState.mOpenWithFgsCount.get(apiType) != 0) {