diff options
author | Abseil Team <absl-team@google.com> | 2021-06-09 16:55:55 (GMT) |
---|---|---|
committer | Dino Radaković <dinor@google.com> | 2021-06-11 17:41:50 (GMT) |
commit | c5be3930f59f3ae99725ed99031aae4d8b8bbb3b (patch) | |
tree | df0344f100d75f6a1914280a09df51e06279df04 | |
parent | aa533abfd4232b01f9e57041d70114d5a77e6de0 (diff) | |
download | googletest-c5be3930f59f3ae99725ed99031aae4d8b8bbb3b.zip googletest-c5be3930f59f3ae99725ed99031aae4d8b8bbb3b.tar.gz googletest-c5be3930f59f3ae99725ed99031aae4d8b8bbb3b.tar.bz2 |
Googletest export
cleanup: fix spurious MSAN warnings with Clang 12
PiperOrigin-RevId: 378430614
-rw-r--r-- | googletest/src/gtest-filepath.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/googletest/src/gtest-filepath.cc b/googletest/src/gtest-filepath.cc index 9504f0f..0b56294 100644 --- a/googletest/src/gtest-filepath.cc +++ b/googletest/src/gtest-filepath.cc @@ -210,7 +210,7 @@ bool FilePath::FileOrDirectoryExists() const { delete [] unicode; return attributes != kInvalidFileAttributes; #else - posix::StatStruct file_stat; + posix::StatStruct file_stat{}; return posix::Stat(pathname_.c_str(), &file_stat) == 0; #endif // GTEST_OS_WINDOWS_MOBILE } @@ -237,7 +237,7 @@ bool FilePath::DirectoryExists() const { result = true; } #else - posix::StatStruct file_stat; + posix::StatStruct file_stat{}; result = posix::Stat(path.c_str(), &file_stat) == 0 && posix::IsDir(file_stat); #endif // GTEST_OS_WINDOWS_MOBILE |