diff options
| author | 2015-08-06 19:27:42 +0000 | |
|---|---|---|
| committer | 2015-08-06 19:27:42 +0000 | |
| commit | cb54ffb2cb9583eaf6b58dcc636681c4e4e07a7d (patch) | |
| tree | 9098a68051e866358867550e5ce6896dd0257d34 | |
| parent | 93f3fc876639cd23ff176cba2e1f8f08df6f3fb5 (diff) | |
| parent | 928e1ecfe2ca8deb7421f06c80bb4ae02d27f030 (diff) | |
Merge "Protect runtime storage mount points." into mnc-dev
| -rw-r--r-- | core/jni/com_android_internal_os_Zygote.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/jni/com_android_internal_os_Zygote.cpp b/core/jni/com_android_internal_os_Zygote.cpp index db88962efccc..7a725ae75e90 100644 --- a/core/jni/com_android_internal_os_Zygote.cpp +++ b/core/jni/com_android_internal_os_Zygote.cpp @@ -298,11 +298,11 @@ static bool MountEmulatedStorage(uid_t uid, jint mount_mode, String8 storageSource; if (mount_mode == MOUNT_EXTERNAL_DEFAULT) { - storageSource = "/mnt/runtime_default"; + storageSource = "/mnt/runtime/default"; } else if (mount_mode == MOUNT_EXTERNAL_READ) { - storageSource = "/mnt/runtime_read"; + storageSource = "/mnt/runtime/read"; } else if (mount_mode == MOUNT_EXTERNAL_WRITE) { - storageSource = "/mnt/runtime_write"; + storageSource = "/mnt/runtime/write"; } else { // Sane default of no storage visible return true; |