From bf414cfbf70570eaba282ae0561324794269d2d1 Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Thu, 3 Mar 2022 13:56:59 -0800 Subject: [lldb] Fix the build after 8b3b66ea63d6 Remove remaining calls to FileSystem::Collect. --- lldb/source/Host/windows/FileSystem.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'lldb/source/Host/windows/FileSystem.cpp') 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; -- cgit v1.1