Merge "Fix the concurrency issue when 'linkToDeath' in AccountManagerService that leads to JE" into main am: e7627bd732

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2664259

Change-Id: I4c5037a6cf51e37b72782e907bd21fef36b31018
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Dmitry Dementyev
2023-07-21 21:32:43 +00:00
committed by Automerger Merge Worker

View File

@@ -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();
}
}