forked from premiere/premiere-libtorrent
fixed bug on windows when verifying resume data for a torrent where one of its directories had been removed
This commit is contained in:
parent
030b2b5be8
commit
7c5ca7712a
|
@ -39,6 +39,8 @@
|
|||
incoming connection
|
||||
* added more detailed instrumentation of the disk I/O thread
|
||||
|
||||
* fixed bug on windows when verifying resume data for a torrent where
|
||||
one of its directories had been removed
|
||||
* fixed race condition in peer-list with DHT
|
||||
* fix force-reannounce and tracker retry issue
|
||||
|
||||
|
|
|
@ -2479,6 +2479,7 @@ ret:
|
|||
{
|
||||
if (m_storage->error()
|
||||
#ifdef TORRENT_WINDOWS
|
||||
&& m_storage->error() != error_code(ERROR_PATH_NOT_FOUND, get_system_category())
|
||||
&& m_storage->error() != error_code(ERROR_FILE_NOT_FOUND, get_system_category())
|
||||
&& m_storage->error() != error_code(ERROR_HANDLE_EOF, get_system_category())
|
||||
&& m_storage->error() != error_code(ERROR_INVALID_HANDLE, get_system_category()))
|
||||
|
|
Loading…
Reference in New Issue