aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Host/windows/FileSystem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/source/Host/windows/FileSystem.cpp')
-rw-r--r--lldb/source/Host/windows/FileSystem.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/lldb/source/Host/windows/FileSystem.cpp b/lldb/source/Host/windows/FileSystem.cpp
index 94872c9..cbd1915 100644
--- a/lldb/source/Host/windows/FileSystem.cpp
+++ b/lldb/source/Host/windows/FileSystem.cpp
@@ -86,7 +86,6 @@ Status FileSystem::ResolveSymbolicLink(const FileSpec &src, FileSpec &dst) {
}
FILE *FileSystem::Fopen(const char *path, const char *mode) {
- Collect(path);
std::wstring wpath, wmode;
if (!llvm::ConvertUTF8toWide(path, wpath))
return nullptr;
@@ -99,7 +98,6 @@ FILE *FileSystem::Fopen(const char *path, const char *mode) {
}
int FileSystem::Open(const char *path, int flags, int mode) {
- Collect(path);
std::wstring wpath;
if (!llvm::ConvertUTF8toWide(path, wpath))
return -1;