*** empty log message ***

This commit is contained in:
Arvid Norberg 2005-08-16 20:42:10 +00:00
parent 6c32f82fc5
commit 6d8068e5d5
2 changed files with 23 additions and 2 deletions

View File

@ -166,7 +166,7 @@ namespace libtorrent
#ifdef UNICODE #ifdef UNICODE
std::wstring wfile_name(safe_convert(file_name)); std::wstring wfile_name(safe_convert(file_name));
HANDLE new_handle = CreateFile( HANDLE new_handle = CreateFile(
(LPCWSTR)wfile_name.c_str() wfile_name.c_str()
, access_mask , access_mask
, FILE_SHARE_READ , FILE_SHARE_READ
, 0 , 0

View File

@ -1327,7 +1327,28 @@ namespace libtorrent
// DO THE FULL CHECK // DO THE FULL CHECK
// ------------------------ // ------------------------
// first, create all missing directories // first, create all missing directories
path last_path;
for (torrent_info::file_iterator file_iter = m_info.begin_files(),
end_iter = m_info.end_files(); file_iter != end_iter; ++file_iter)
{
path dir = (m_save_path / file_iter->path).branch_path();
if (dir == last_path) continue;
last_path = dir;
#if defined(WIN32) && defined(UNICODE)
if (!exists_win(last_path))
create_directories_win(last_path);
#else
if (!exists(last_path))
create_directories(last_path);
#endif
}
/*
// first, create all missing directories
for (torrent_info::file_iterator file_iter = m_info.begin_files(), for (torrent_info::file_iterator file_iter = m_info.begin_files(),
end_iter = m_info.end_files(); file_iter != end_iter; ++file_iter) end_iter = m_info.end_files(); file_iter != end_iter; ++file_iter)
{ {
@ -1341,7 +1362,7 @@ namespace libtorrent
create_directories(dir.branch_path()); create_directories(dir.branch_path());
#endif #endif
} }
*/
std::vector<char> piece_data(static_cast<int>(m_info.piece_length())); std::vector<char> piece_data(static_cast<int>(m_info.piece_length()));
// this maps a piece hash to piece index. It will be // this maps a piece hash to piece index. It will be