temp files created when forwarding a message with attachments are not being deleted. fix by cavin@netscape.com. r=ducarroz, sr=sspitzer
This commit is contained in:
sspitzer%netscape.com 2001-04-13 21:38:47 +00:00
Родитель 17e78d87ed
Коммит 8609b35624
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -203,7 +203,11 @@ mime_dump_attachments ( attachmentList );
curAttachment++;
}
if (attachments.Length())
{
compFields->SetAttachments(attachments);
// remember the temp files to delete
compFields->SetTemporaryFiles(attachments);
}
}
NS_WITH_SERVICE(nsIMsgComposeService, msgComposeService,