diff options
author | Jeff Sharkey <jsharkey@android.com> | 2013-09-18 17:10:43 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2013-09-18 17:10:43 +0000 |
commit | ab482f5eff21af748c906857f529a3c17df35964 (patch) | |
tree | dea612debd0e7aa4451d1e74c2e1073fe2fe5783 /runtime | |
parent | c4621985bdfc2b27494087e5dee65a6d0cc5a632 (diff) | |
parent | 52cd1e8f2f0622a174f883e24151ab873170787f (diff) | |
download | android_art-ab482f5eff21af748c906857f529a3c17df35964.tar.gz android_art-ab482f5eff21af748c906857f529a3c17df35964.tar.bz2 android_art-ab482f5eff21af748c906857f529a3c17df35964.zip |
Merge "Allow traversal into /storage paths." into klp-dev
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/runtime.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/runtime.cc b/runtime/runtime.cc index 70a4df529d..f7b5f7442b 100644 --- a/runtime/runtime.cc +++ b/runtime/runtime.cc @@ -773,7 +773,7 @@ bool Runtime::InitZygote() { const char* target_base = getenv("EMULATED_STORAGE_TARGET"); if (target_base != NULL) { if (mount("tmpfs", target_base, "tmpfs", MS_NOSUID | MS_NODEV, - "uid=0,gid=1028,mode=0050") == -1) { + "uid=0,gid=1028,mode=0751") == -1) { LOG(WARNING) << "Failed to mount tmpfs to " << target_base; return false; } |