am cf0e4706: am 8ff6d70d: Merge "Clear identity before calling into the mount service." into lmp-dev
* commit 'cf0e4706e341f2239591af5b6934cb266cb3db61': Clear identity before calling into the mount service.
This commit is contained in:
@@ -1610,10 +1610,15 @@ public class AccessibilityManagerService extends IAccessibilityManager.Stub {
|
||||
if (userState.mUserId != UserHandle.USER_OWNER) {
|
||||
return;
|
||||
}
|
||||
if (hasRunningServicesLocked(userState) && LockPatternUtils.isDeviceEncrypted()) {
|
||||
// If there are running accessibility services we do not have encryption as
|
||||
// the user needs the accessibility layer to be running to authenticate.
|
||||
mLockPatternUtils.clearEncryptionPassword();
|
||||
final long identity = Binder.clearCallingIdentity();
|
||||
try {
|
||||
if (hasRunningServicesLocked(userState) && LockPatternUtils.isDeviceEncrypted()) {
|
||||
// If there are running accessibility services we do not have encryption as
|
||||
// the user needs the accessibility layer to be running to authenticate.
|
||||
mLockPatternUtils.clearEncryptionPassword();
|
||||
}
|
||||
} finally {
|
||||
Binder.restoreCallingIdentity(identity);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user