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

Commit 72847505 authored by George Burgess IV's avatar George Burgess IV Committed by android-build-merger
Browse files

Merge "Fix a call to openat with incorrect arguments" am: 18044da5 am: 5675b05f

am: dca9c41a

Change-Id: Ibfb8cf5508a19593379bce4b6626484757ddef5f
parents 23749561 dca9c41a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -110,7 +110,7 @@ static unique_fd get_tombstone_fd() {
  }

  result.reset(
    openat(tombstone_directory_fd, buf, O_CREAT | O_EXCL | O_WRONLY | O_APPEND, O_CLOEXEC, 0700));
    openat(tombstone_directory_fd, buf, O_CREAT | O_EXCL | O_WRONLY | O_APPEND | O_CLOEXEC, 0700));
  if (result == -1) {
    PLOG(FATAL) << "failed to create tombstone at " << kTombstoneDirectory << buf;
  }