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

Commit c289922b authored by Todd Kennedy's avatar Todd Kennedy Committed by Android (Google) Code Review
Browse files

Merge "Fix NPE for MATCH_FACTORY_ONLY" into nyc-dev

parents 3212a4c7 421d8f5f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3055,7 +3055,7 @@ public class PackageManagerService extends IPackageManager.Stub {
            }
            if (p == null) {
                p = mPackages.get(packageName);
                if (matchFactoryOnly && !isSystemApp(p)) {
                if (matchFactoryOnly && p != null && !isSystemApp(p)) {
                    return null;
                }
            }