Merge "Don't include the data dir in zygote library paths." into rvc-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
aa9b7407da
@@ -801,6 +801,11 @@ public final class LoadedApk {
|
|||||||
makePaths(mActivityThread, isBundledApp, mApplicationInfo, zipPaths, libPaths);
|
makePaths(mActivityThread, isBundledApp, mApplicationInfo, zipPaths, libPaths);
|
||||||
|
|
||||||
String libraryPermittedPath = mDataDir;
|
String libraryPermittedPath = mDataDir;
|
||||||
|
if (mActivityThread == null) {
|
||||||
|
// In a zygote context where mActivityThread is null we can't access the app data dir
|
||||||
|
// and including this in libraryPermittedPath would cause SELinux denials.
|
||||||
|
libraryPermittedPath = "";
|
||||||
|
}
|
||||||
|
|
||||||
if (isBundledApp) {
|
if (isBundledApp) {
|
||||||
// For bundled apps, add the base directory of the app (e.g.,
|
// For bundled apps, add the base directory of the app (e.g.,
|
||||||
|
|||||||
Reference in New Issue
Block a user