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

Commit e7627bd7 authored by Dmitry Dementyev's avatar Dmitry Dementyev Committed by Gerrit Code Review
Browse files

Merge "Fix the concurrency issue when 'linkToDeath' in AccountManagerService...

Merge "Fix the concurrency issue when 'linkToDeath' in AccountManagerService that leads to JE" into main
parents c3199051 166e569b
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -4854,7 +4854,6 @@ public class AccountManagerService
            if (accountType == null) throw new IllegalArgumentException("accountType is null");
            mAccounts = accounts;
            mStripAuthTokenFromResult = stripAuthTokenFromResult;
            mResponse = response;
            mAccountType = accountType;
            mExpectActivityLaunch = expectActivityLaunch;
            mCreationTime = SystemClock.elapsedRealtime();
@@ -4868,8 +4867,8 @@ public class AccountManagerService
            if (response != null) {
                try {
                    response.asBinder().linkToDeath(this, 0 /* flags */);
                    mResponse = response;
                } catch (RemoteException e) {
                    mResponse = null;
                    binderDied();
                }
            }