Merge "Clear calling identity before calling mountService" into nyc-dev

This commit is contained in:
Toni Barzic
2016-06-15 17:45:55 +00:00
committed by Android (Google) Code Review

View File

@@ -1145,7 +1145,13 @@ public class LockSettingsService extends ILockSettings.Stub {
private void fixateNewestUserKeyAuth(int userId)
throws RemoteException {
getMountService().fixateNewestUserKeyAuth(userId);
final IMountService mountService = getMountService();
final long callingId = Binder.clearCallingIdentity();
try {
mountService.fixateNewestUserKeyAuth(userId);
} finally {
Binder.restoreCallingIdentity(callingId);
}
}
@Override