Merge "fix IndexOutOfBoundsException in AccessibilityManagerService..manageServicesLocked" am: 14c7e67da8

am: 6006d681ab

Change-Id: I9ed4aca6b9d23a4e8196bdb9595c5e1b8fd2faf4
This commit is contained in:
Svetoslav Ganov
2017-03-14 19:12:23 +00:00
committed by android-build-merger

View File

@@ -398,10 +398,12 @@ public class AccessibilityManagerService extends IAccessibilityManager.Stub {
removeUser(intent.getIntExtra(Intent.EXTRA_USER_HANDLE, 0)); removeUser(intent.getIntExtra(Intent.EXTRA_USER_HANDLE, 0));
} else if (Intent.ACTION_USER_PRESENT.equals(action)) { } else if (Intent.ACTION_USER_PRESENT.equals(action)) {
// We will update when the automation service dies. // We will update when the automation service dies.
UserState userState = getCurrentUserStateLocked(); synchronized (mLock) {
if (!userState.isUiAutomationSuppressingOtherServices()) { UserState userState = getCurrentUserStateLocked();
if (readConfigurationForUserStateLocked(userState)) { if (!userState.isUiAutomationSuppressingOtherServices()) {
onUserStateChangedLocked(userState); if (readConfigurationForUserStateLocked(userState)) {
onUserStateChangedLocked(userState);
}
} }
} }
} else if (Intent.ACTION_SETTING_RESTORED.equals(action)) { } else if (Intent.ACTION_SETTING_RESTORED.equals(action)) {