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

Commit 2184cf58 authored by Jing Ji's avatar Jing Ji
Browse files

Fix the incorrect getCallingPid() in the ActivityManagerService

Bug: 335581837
Test: Treehugger
Change-Id: I5c0544ebd4f4cba0f05227ad8705acfdff6c2d6e
parent 748f0532
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -20644,7 +20644,7 @@ public class ActivityManagerService extends IActivityManager.Stub
        /** @see Binder#getCallingPid */
        public int getCallingPid() {
            return Binder.getCallingUid();
            return Binder.getCallingPid();
        }
        /** @see Binder#clearCallingIdentity */