Merge "init: Fix a bug in MountDir"

This commit is contained in:
Treehugger Robot 2020-01-21 15:39:04 +00:00 committed by Gerrit Code Review
commit c3d94633a2
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ static bool IsApexUpdatable() {
}
static Result<void> MountDir(const std::string& path, const std::string& mount_path) {
if (int ret = mkdir(mount_path.c_str(), 0755); ret != 0 && ret != EEXIST) {
if (int ret = mkdir(mount_path.c_str(), 0755); ret != 0 && errno != EEXIST) {
return ErrnoError() << "Could not create mount point " << mount_path;
}
if (mount(path.c_str(), mount_path.c_str(), nullptr, MS_BIND, nullptr) != 0) {