commit | 0d2989e34923f140184a92a2da7e99ea7cf595df | [log] [tgz] |
---|---|---|
author | Treehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com> | Mon Nov 04 16:27:20 2024 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Mon Nov 04 16:27:20 2024 +0000 |
tree | 319fcf468267d993215db43db24d0ff79e89804d | |
parent | 238801c3ab0ec5896bf8d7e2f2fc3cf03880c32b [diff] | |
parent | 879cd9981a9bb9b48be5843f8f5026c13f14486c [diff] |
Merge "Ignore null action in AppBindingService." into main
diff --git a/services/core/java/com/android/server/appbinding/AppBindingService.java b/services/core/java/com/android/server/appbinding/AppBindingService.java index 5db6dc7..6ccb3ee 100644 --- a/services/core/java/com/android/server/appbinding/AppBindingService.java +++ b/services/core/java/com/android/server/appbinding/AppBindingService.java
@@ -235,6 +235,9 @@ } final String action = intent.getAction(); + if (action == null) { + return; + } if (Intent.ACTION_USER_REMOVED.equals(action)) { onUserRemoved(userId);