Remove dead code from fs_mgr

Test: Compiles
Change-Id: I644cfe58fdf87fbb88a85953f1450efb8b99baab
This commit is contained in:
Paul Lawrence 2023-06-22 08:43:42 -07:00
parent 4bc9e2517b
commit 997e9bbc18

View file

@ -102,9 +102,8 @@ static bool mount_via_fs_mgr(const char* mount_point, const char* blk_device, bo
PLOG(ERROR) << "Failed to setexeccon";
return false;
}
auto mount_rc = fs_mgr_do_mount(&fstab_default, const_cast<char*>(mount_point),
const_cast<char*>(blk_device), nullptr,
android::vold::cp_needsCheckpoint(), true, needs_encrypt);
auto mount_rc = fs_mgr_do_mount(&fstab_default, mount_point, blk_device,
android::vold::cp_needsCheckpoint(), needs_encrypt);
if (setexeccon(nullptr)) {
PLOG(ERROR) << "Failed to clear setexeccon";
return false;