mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-12 02:31:41 +00:00
fixed bug 57614 - copy to Sent folder failed after message sent successfully, r=bienvenu, sr=alecf
This commit is contained in:
parent
2c2985b73b
commit
f794279e7d
@ -4087,7 +4087,8 @@ nsMsgComposeAndSend::MimeDoFCC(nsFileSpec *input_file,
|
||||
//
|
||||
while (! inputFile.eof())
|
||||
{
|
||||
if (!inputFile.readline(ibuffer, ibuffer_size))
|
||||
// check *ibuffer in case that ibuffer isn't big enough
|
||||
if (!inputFile.readline(ibuffer, ibuffer_size) && *ibuffer == 0)
|
||||
{
|
||||
status = NS_ERROR_FAILURE;
|
||||
goto FAIL;
|
||||
|
Loading…
x
Reference in New Issue
Block a user