fixed bug in disk IO thread which would make it sometimes0 exit the thread if an error occurred

This commit is contained in:
Arvid Norberg 2008-11-29 21:38:34 +00:00
parent 09b3a865ef
commit 1022ba45fc
1 changed files with 1 additions and 1 deletions

View File

@ -858,7 +858,7 @@ namespace libtorrent
if (test_error(j))
{
ret = -1;
return;
break;
}
#ifdef TORRENT_DISK_STATS
m_log << log_time() << " read " << j.buffer_size << std::endl;