Bugzilla bug 128915: the first part of the previous change is not

necessary, so replace it with an assertion.  r=mcgreer.
This commit is contained in:
wtc%netscape.com 2002-03-05 15:49:33 +00:00
Родитель 92168ba210
Коммит d0a5d7f2a8
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -714,7 +714,8 @@ CERT_SaveSMimeProfile(CERTCertificate *cert, SECItem *emailProfile,
cc = c->object.cryptoContext;
if (cc != NULL) {
stanProfile = nssCryptoContext_FindSMIMEProfileForCertificate(cc, c);
if (stanProfile && stanProfile->profileData) {
if (stanProfile) {
PORT_Assert(stanProfile->profileData);
SECITEM_FROM_NSSITEM(&oldprof, stanProfile->profileData);
oldProfile = &oldprof;
}