This commit is contained in:
naving%netscape.com 2001-11-28 02:01:00 +00:00
Родитель ae4ae450c2
Коммит 8994f3a7b8
2 изменённых файлов: 7 добавлений и 8 удалений

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

@ -506,7 +506,7 @@ void nsEudoraCompose::ExtractType( nsString& str)
void nsEudoraCompose::CleanUpAttach( nsMsgAttachedFile *a, PRInt32 count)
{
for (PRInt32 i = 0; i < count; i++) {
for (PRInt32 i = 0; i < count; i++) {
a[i].orig_url=nsnull;
if (a[i].type)
nsCRT::free( a[i].type);
@ -514,9 +514,8 @@ void nsEudoraCompose::CleanUpAttach( nsMsgAttachedFile *a, PRInt32 count)
nsCRT::free( a[i].description);
if (a[i].encoding)
nsCRT::free( a[i].encoding);
}
delete [] a;
}
delete [] a;
}
nsMsgAttachedFile * nsEudoraCompose::GetLocalAttachments( void)

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

@ -503,7 +503,8 @@ void nsOutlookCompose::ExtractType( nsString& str)
void nsOutlookCompose::CleanUpAttach( nsMsgAttachedFile *a, PRInt32 count)
{
for (PRInt32 i = 0; i < count; i++) {
for (PRInt32 i = 0; i < count; i++)
{
a[i].orig_url=nsnull;
if (a[i].type)
nsCRT::free( a[i].type);
@ -511,9 +512,8 @@ void nsOutlookCompose::CleanUpAttach( nsMsgAttachedFile *a, PRInt32 count)
nsCRT::free( a[i].description);
if (a[i].encoding)
nsCRT::free( a[i].encoding);
}
delete [] a;
}
delete [] a;
}
nsMsgAttachedFile * nsOutlookCompose::GetLocalAttachments( void)