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

Commit 16106a76 authored by Kenny Root's avatar Kenny Root Committed by Android Git Automerger
Browse files

am 92bc9b31: PMS: check outInfo for null during delete

* commit '92bc9b31':
  PMS: check outInfo for null during delete
parents a4dcf311 92bc9b31
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -8291,7 +8291,7 @@ public class PackageManagerService extends IPackageManager.Stub {
        removePackageDataLI(ps, outInfo, flags, writeSettings);

        // Delete application code and resources
        if (deleteCodeAndResources) {
        if (deleteCodeAndResources && (outInfo != null)) {
            outInfo.args = createInstallArgs(packageFlagsToInstallFlags(ps), ps.codePathString,
                    ps.resourcePathString, ps.nativeLibraryPathString);
        }