revert "[lldb/Host] Fix crash in FileSystem::IsLocal"

This reverts commit 2dc6e906b0 following
changes introduced in 59eb705277.
This commit is contained in:
Med Ismail Bennani
2022-03-04 13:36:36 -08:00
parent 680ca7f21a
commit b934ed7dd6

View File

@@ -171,8 +171,7 @@ bool FileSystem::IsDirectory(const FileSpec &file_spec) const {
bool FileSystem::IsLocal(const Twine &path) const {
bool b = false;
if (m_fs)
m_fs->isLocal(path, b);
m_fs->isLocal(path, b);
return b;
}