diff options
Diffstat (limited to 'unittests/Basic/FileManagerTest.cpp')
-rw-r--r-- | unittests/Basic/FileManagerTest.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/unittests/Basic/FileManagerTest.cpp b/unittests/Basic/FileManagerTest.cpp index a725a43..91998b6 100644 --- a/unittests/Basic/FileManagerTest.cpp +++ b/unittests/Basic/FileManagerTest.cpp @@ -28,7 +28,8 @@ private: llvm::StringMap<struct stat, llvm::BumpPtrAllocator> StatCalls; void InjectFileOrDirectory(const char *Path, ino_t INode, bool IsFile) { - struct stat statBuf = {}; + struct stat statBuf; + memset(&statBuf, 0, sizeof(statBuf)); statBuf.st_dev = 1; #ifndef _WIN32 // struct stat has no st_ino field on Windows. statBuf.st_ino = INode; |