Fix problem found with host bionic fortify checks

am: dc1921810e

Change-Id: Id82671e9f0b4debc28b516a0b3f10104fc54e198
This commit is contained in:
Dan Willemsen 2017-12-01 04:29:29 +00:00 committed by android-build-merger
commit 6737d81d15

View file

@ -56,7 +56,7 @@ class BluetoothAddressTest : public ::testing::Test {
void BluetoothAddressTest::FileWriteString(const char* path,
const char* string) {
int fd = open(path, O_CREAT | O_RDWR);
int fd = open(path, O_CREAT | O_RDWR, 0600);
EXPECT_TRUE(fd > 0) << "err = " << strerror(errno);
size_t length = strlen(string);