This commit is contained in:
bienvenu%netscape.com 1999-02-24 16:34:39 +00:00
Родитель 1f2b378d80
Коммит bb6a3fcb2c
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -282,7 +282,7 @@ PRInt32 nsMsgMailboxParser::PublishMsgHeader()
m_newMsgHdr = NULL;
}
else
XP_ASSERT(FALSE); // should have a DB, no?
NS_ASSERTION(FALSE, "no database while parsing local folder"); // should have a DB, no?
}
else if (m_mailDB)
{
@ -883,7 +883,7 @@ int nsParseMailMessageState::InternSubject (struct message_header *header)
return 0;
}
XP_ASSERT (header->length == (short) XP_STRLEN (header->value));
NS_ASSERTION (header->length == (short) XP_STRLEN (header->value), "subject corrupt while parsing message");
key = (char *) header->value; /* #### const evilness */