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

Commit 838b1e22 authored by narayan's avatar narayan Committed by Gerrit Code Review
Browse files

Merge "Fix NPE in PackageManagerService."

parents bc06158a 0cfe875a
Loading
Loading
Loading
Loading
+12 −10
Original line number Diff line number Diff line
@@ -5682,6 +5682,7 @@ public class PackageManagerService extends IPackageManager.Stub {
                    }
                    ps.cpuAbiString = adjustedAbi;
                    if (ps.pkg != null && ps.pkg.applicationInfo != null) {
                        ps.pkg.applicationInfo.cpuAbi = adjustedAbi;
                        Slog.i(TAG, "Adjusting ABI for : " + ps.name + " to " + adjustedAbi);
@@ -5695,6 +5696,7 @@ public class PackageManagerService extends IPackageManager.Stub {
                    }
                }
            }
        }
        return true;
    }