Merge "Fixing possible NullPointerException" into udc-dev am: d45d287761

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

Change-Id: Ib5b0d4aab1ed03077ba2e03599f6ea6466ae0f2a
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Kunal Malhotra
2023-02-24 02:09:37 +00:00
committed by Automerger Merge Worker

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) {