Merge "Fix a call to openat with incorrect arguments" am: 18044da576 am: 5675b05f52 am: dca9c41a79

am: 728475056a

Change-Id: I0f5fc711eb3ce6029ec54553e2e423f2c42f3445
This commit is contained in:
George Burgess IV 2017-01-20 01:24:16 +00:00 committed by android-build-merger
commit 24c389a8bf
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}