Fix for bug 120594. Add null pointer check to avoid crashing. R=varada. SR=bienvenu, A=asa

This commit is contained in:
ducarroz%netscape.com 2002-04-10 21:20:53 +00:00
Родитель bf995a233f
Коммит 787a859bd8
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -520,7 +520,8 @@ mime_draft_process_attachments(mime_draft_data *mdd)
//It's possible we must treat the message body as attachment!
PRBool bodyAsAttachment = PR_FALSE;
if ( mdd->messageBody->type && *mdd->messageBody->type &&
if ( mdd->messageBody &&
mdd->messageBody->type && *mdd->messageBody->type &&
( PL_strcasestr(mdd->messageBody->type, "text/html") == nsnull ) &&
( PL_strcasestr(mdd->messageBody->type, "text/plain") == nsnull ) &&
( PL_strcasecmp(mdd->messageBody->type, "text") != 0 )