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

Commit e385cb92 authored by Jing Ji's avatar Jing Ji Committed by android-build-merger
Browse files

Merge "Prevent system uid component from running in an isolated app process"...

Merge "Prevent system uid component from running in an isolated app process" into oc-dev am: 909ff7dc am: 68f32340
am: 038be975

Change-Id: Ib4d8700eb5f5a8275a0a917ef6f6db2a0a3b85de
parents 3b0553b1 038be975
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -3995,7 +3995,8 @@ public class ActivityManagerService extends IActivityManager.Stub
            final int procCount = procs.size();
            for (int i = 0; i < procCount; i++) {
                final int procUid = procs.keyAt(i);
                if (UserHandle.isApp(procUid) || !UserHandle.isSameUser(procUid, uid)) {
                if (UserHandle.isApp(procUid) || !UserHandle.isSameUser(procUid, uid)
                        || UserHandle.isIsolated(procUid)) {
                    // Don't use an app process or different user process for system component.
                    continue;
                }