Merge changes I72734267,I66ef7a72 am: 6ace0c8ba0

Original change: https://android-review.googlesource.com/c/platform/system/vold/+/2005652

Change-Id: I23ecce1614673146253c000c71701e32c2d9e10c
This commit is contained in:
Samiul Islam 2022-03-07 15:24:13 +00:00 committed by Automerger Merge Worker
commit 1e1bade6ff

View file

@ -174,7 +174,7 @@ static bool prepare_subdirs(const std::string& volume_uuid, int user_id, int fla
auto misc_de_path = android::vold::BuildDataMiscDePath(user_id); auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
if (!prepare_dir_for_user(sehandle, 0771, AID_SYSTEM, AID_SYSTEM, if (!prepare_dir_for_user(sehandle, 0771, AID_SYSTEM, AID_SYSTEM,
misc_de_path + "/supplemental", user_id)) { misc_de_path + "/sdksandbox", user_id)) {
return false; return false;
} }
@ -210,7 +210,7 @@ static bool prepare_subdirs(const std::string& volume_uuid, int user_id, int fla
auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id); auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
if (!prepare_dir_for_user(sehandle, 0771, AID_SYSTEM, AID_SYSTEM, if (!prepare_dir_for_user(sehandle, 0771, AID_SYSTEM, AID_SYSTEM,
misc_ce_path + "/supplemental", user_id)) { misc_ce_path + "/sdksandbox", user_id)) {
return false; return false;
} }