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

Commit d95d2d5b authored by Toni Barzic's avatar Toni Barzic Committed by android-build-merger
Browse files

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

Merge \\\"Clear calling identity before calling mountService\\\" into nyc-dev am: b2a45c00 am: 0fd4da49
am: 7aaf27bd

Change-Id: I1fd28b5d06d3edf2127f0f445ac86719d525cbc8
parents 646acd9f 7aaf27bd
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -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