Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 651cb804 authored by Adam Lesinski's avatar Adam Lesinski Committed by Android Git Automerger
Browse files

am fe1934e4: Merge "RRO: idmap: allow flock(2) to block"

* commit 'fe1934e4':
  RRO: idmap: allow flock(2) to block
parents 287cd2d1 fe1934e4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@ namespace {
            ALOGD("error: fchmod %s: %s\n", path, strerror(errno));
            goto fail;
        }
        if (TEMP_FAILURE_RETRY(flock(fd, LOCK_EX | LOCK_NB)) != 0) {
        if (TEMP_FAILURE_RETRY(flock(fd, LOCK_EX)) != 0) {
            ALOGD("error: flock %s: %s\n", path, strerror(errno));
            goto fail;
        }