*** empty log message ***

This commit is contained in:
Arvid Norberg
2004-03-05 19:03:02 +00:00
parent 8363c809f3
commit d4cd23a874
2 changed files with 5 additions and 1 deletions

View File

@@ -1169,5 +1169,9 @@ namespace libtorrent
{ {
return; return;
} }
catch (file_error)
{
return;
}
} }
} }

View File

@@ -963,7 +963,7 @@ namespace libtorrent
++file_iter) ++file_iter)
{ {
fs::path dir = m_save_path / m_info.name() / file_iter->path; fs::path dir = m_save_path / m_info.name() / file_iter->path;
fs::create_directories(dir); fs::create_directories(dir.branch_path());
} }
std::vector<char> piece_data(m_info.piece_length()); std::vector<char> piece_data(m_info.piece_length());