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

Commit 38edfda9 authored by Eric Laurent's avatar Eric Laurent
Browse files

AudioService: fix permission check.

Clear caller identity before calling TelecomManager.isInCall().

Bug: 18702149.
Change-Id: Ie057f3f261fc0a36dff51840cc8390408621d3bd
parent 8a0399c4
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -3248,7 +3248,10 @@ public class AudioService extends IAudioService.Stub {

        TelecomManager telecomManager =
                (TelecomManager) mContext.getSystemService(Context.TELECOM_SERVICE);

        final long ident = Binder.clearCallingIdentity();
        IsInCall = telecomManager.isInCall();
        Binder.restoreCallingIdentity(ident);

        return (IsInCall || getMode() == AudioManager.MODE_IN_COMMUNICATION);
    }