Merge "Add permission bits to open() with O_CREAT."

This commit is contained in:
Treehugger Robot 2017-02-10 02:07:28 +00:00 committed by Gerrit Code Review
commit c33ba01a71
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ namespace fuse {
constexpr char kTempFile[] = "/data/local/tmp/appfuse_test_dump";
void OpenTempFile(android::base::unique_fd* fd) {
fd->reset(open(kTempFile, O_CREAT | O_RDWR));
fd->reset(open(kTempFile, O_CREAT | O_RDWR, 0600));
ASSERT_NE(-1, *fd) << strerror(errno);
unlink(kTempFile);
ASSERT_NE(-1, *fd) << strerror(errno);