mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-21 05:43:32 -07:00
commit
26941a5b02
1 changed files with 5 additions and 3 deletions
|
@ -41,9 +41,11 @@ Utils::IO::FileDeviceOutputIterator::FileDeviceOutputIterator(QFileDevice &devic
|
||||||
|
|
||||||
Utils::IO::FileDeviceOutputIterator::~FileDeviceOutputIterator()
|
Utils::IO::FileDeviceOutputIterator::~FileDeviceOutputIterator()
|
||||||
{
|
{
|
||||||
|
if (m_buffer.use_count() == 1) {
|
||||||
if (m_device->error() == QFileDevice::NoError)
|
if (m_device->error() == QFileDevice::NoError)
|
||||||
m_device->write(*m_buffer);
|
m_device->write(*m_buffer);
|
||||||
m_buffer->clear();
|
m_buffer->clear();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Utils::IO::FileDeviceOutputIterator &Utils::IO::FileDeviceOutputIterator::operator=(const char c)
|
Utils::IO::FileDeviceOutputIterator &Utils::IO::FileDeviceOutputIterator::operator=(const char c)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue