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:
bienvenu%nventure.com 2004-01-22 17:46:02 +00:00
parent 01979b95c7
commit 34ba27ec73

View File

@ -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;
}