mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-03 04:52:54 +00:00
fix slowdown in pop3 mail downloading on nfs servers, 231814 sr=mscott by checking if we're at eof before seeking to eof
This commit is contained in:
parent
01979b95c7
commit
34ba27ec73
@ -509,7 +509,8 @@ nsresult nsPop3Sink::WriteLineToMailbox(char *buffer)
|
||||
|
||||
NS_ASSERTION(m_outFileStream->eof(), "we are not writing to end-of-file");
|
||||
|
||||
m_outFileStream->seek(PR_SEEK_END, 0);
|
||||
if (!m_outFileStream->eof())
|
||||
m_outFileStream->seek(PR_SEEK_END, 0);
|
||||
PRInt32 bytes = m_outFileStream->write(buffer,bufferLen);
|
||||
if (bytes != bufferLen) return NS_ERROR_FAILURE;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user