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

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

@ -515,7 +515,6 @@ void nsEudoraCompose::CleanUpAttach( nsMsgAttachedFile *a, PRInt32 count)
if (a[i].encoding)
nsCRT::free( a[i].encoding);
}
delete [] a;
}

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

@ -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);
@ -512,7 +513,6 @@ void nsOutlookCompose::CleanUpAttach( nsMsgAttachedFile *a, PRInt32 count)
if (a[i].encoding)
nsCRT::free( a[i].encoding);
}
delete [] a;
}