Merge "Do not enable storage data isolation when mount mode is none."

This commit is contained in:
TreeHugger Robot
2020-08-17 08:47:26 +00:00
committed by Android (Google) Code Review

View File

@@ -2222,7 +2222,8 @@ public final class ProcessList {
// access /mnt/user anyway.
&& app.mountMode != Zygote.MOUNT_EXTERNAL_ANDROID_WRITABLE
&& app.mountMode != Zygote.MOUNT_EXTERNAL_PASS_THROUGH
&& app.mountMode != Zygote.MOUNT_EXTERNAL_INSTALLER;
&& app.mountMode != Zygote.MOUNT_EXTERNAL_INSTALLER
&& app.mountMode != Zygote.MOUNT_EXTERNAL_NONE;
}
private Process.ProcessStartResult startProcess(HostingRecord hostingRecord, String entryPoint,