Raise error if no space left on device

This commit is contained in:
Sergey Yershov 2016-03-01 16:02:08 +03:00
parent 4e879b28da
commit 06e7b8cd9b

View file

@ -188,7 +188,11 @@ static id<DownloadIndicatorProtocol> downloadIndicator = nil;
UNUSED_VALUE(connection);
int64_t const length = [data length];
m_downloadedBytes += length;
m_callback->OnWrite(m_begRange + m_downloadedBytes - length, [data bytes], length);
if(!m_callback->OnWrite(m_begRange + m_downloadedBytes - length, [data bytes], length))
{
[m_connection cancel];
m_callback->OnFinish(-1, m_begRange, m_endRange);
}
}
- (void) connection:(NSURLConnection *)connection didFailWithError:(NSError *)error