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

Commit 53e3d47d authored by gang.huang's avatar gang.huang
Browse files

Ignore null action in PackageManagerService.

Bug: 375569842
Test: Manual.
Change-Id: I85cb675a456a058a3c54689077dc21e233337d2c
parent 9f1d7a66
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -4283,6 +4283,10 @@ public class PackageManagerService implements PackageSender, TestUtilityService
                if (intent == null) {
                    return;
                }
                final String action = intent.getAction();
                if (action == null) {
                    return;
                }
                Uri data = intent.getData();
                if (data == null) {
                    return;