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

Commit af15d9e7 authored by Christopher Tate's avatar Christopher Tate
Browse files

Fix NPE when walking the set of packages to update app link policy

Bug 21851441

Change-Id: I3616c5a7e40f5ff9ad9bbfee579a4a2fb2b1f7fd
parent 6b0f384f
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -1072,7 +1072,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;