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

Commit 540dcb22 authored by Todd Kennedy's avatar Todd Kennedy
Browse files

null check

Fixes: 34598376
Test: Manual
Change-Id: Ia2508434f6fada2219c1eea9b05f9101fc4490e3
parent 773dedda
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -3449,7 +3449,7 @@ public class PackageManagerService extends IPackageManager.Stub {
    }
    private boolean filterSharedLibPackageLPr(PackageSetting ps, int uid, int userId) {
    private boolean filterSharedLibPackageLPr(@Nullable PackageSetting ps, int uid, int userId) {
        // System/shell/root get to see all static libs
        final int appId = UserHandle.getAppId(uid);
        if (appId == Process.SYSTEM_UID || appId == Process.SHELL_UID
@@ -3458,7 +3458,7 @@ public class PackageManagerService extends IPackageManager.Stub {
        }
        // No package means no static lib as it is always on internal storage
        if (ps.pkg == null || !ps.pkg.applicationInfo.isStaticSharedLibrary()) {
        if (ps == null || ps.pkg == null || !ps.pkg.applicationInfo.isStaticSharedLibrary()) {
            return false;
        }