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

Commit 69393011 authored by Todd Kennedy's avatar Todd Kennedy Committed by android-build-merger
Browse files

Merge "null check before dereference" into oc-dev

am: df856978

Change-Id: I62067d87f75367bb527862d3ac3873b3c94c9b7c
parents 7049137d df856978
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -20029,7 +20029,7 @@ public class PackageManagerService extends IPackageManager.Stub
        // Queue up an async operation since the package deletion may take a little while.
        mHandler.post(new Runnable() {
            public void run() {
                final PackageSetting ps = (PackageSetting) pkg.mExtras;
                final PackageSetting ps = pkg == null ? null : (PackageSetting) pkg.mExtras;
                boolean doClearData = true;
                if (ps != null) {
                    final boolean targetIsInstantApp =