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

Commit bd145dbf authored by Dianne Hackborn's avatar Dianne Hackborn
Browse files

Fix issue #6609383: java.lang.SecurityException: Requires...

...MANAGE_APP_TOKENS permission

Bug: 6609383
Change-Id: I5ce8ac1ec496af50477111b46e6daea81181e3ca
parent 1ad66b2f
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -6645,7 +6645,12 @@ public final class ActivityManagerService extends ActivityManagerNative
            // death notification...  just a bit prematurely.
            Slog.i(TAG, "Process " + proc.processName + " (pid " + proc.pid
                    + ") early provider death");
            final long ident = Binder.clearCallingIdentity();
            try {
                appDiedLocked(proc, proc.pid, proc.thread);
            } finally {
                Binder.restoreCallingIdentity(ident);
            }
        }
    }