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

Commit 8d3188d3 authored by Christopher Tate's avatar Christopher Tate Committed by Android Git Automerger
Browse files

am 16ae25ed: am 62e94844: am 80b60bbb: Merge "Fix NPE when walking the set of...

am 16ae25ed: am 62e94844: am 80b60bbb: Merge "Fix NPE when walking the set of packages to update app link policy" into mnc-dev

* commit '16ae25ed':
  Fix NPE when walking the set of packages to update app link policy
parents 2b40e707 16ae25ed
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -1076,7 +1076,9 @@ final class Settings {
        ArraySet<String> currentDomains = current.getIntentFilterVerificationInfo().getDomains();
        if (status == INTENT_FILTER_DOMAIN_VERIFICATION_STATUS_ALWAYS) {
            for (PackageSetting ps : mPackages.values()) {
                if (ps == null || ps.pkg.packageName.equals(packageName)) continue;
                if (ps == null || ps.pkg == null || packageName.equals(ps.pkg.packageName)) {
                    continue;
                }
                IntentFilterVerificationInfo ivi = ps.getIntentFilterVerificationInfo();
                if (ivi == null) {
                    continue;