407064 - pkix_pl_LdapCertStore_BuildCrlList should not fail if a crl fails to be decoded. r=nelson
git-svn-id: svn://10.0.0.236/trunk@240764 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
parent
2fb92a13e3
commit
23c10e3d22
@ -360,8 +360,9 @@ pkix_pl_LdapCertStore_BuildCrlList(
|
||||
derCrlItem = *attrVal++;
|
||||
while (derCrlItem != 0) {
|
||||
/* create a PKIX_PL_Crl from derCrl */
|
||||
PKIX_CHECK(pkix_pl_CRL_CreateToList
|
||||
(derCrlItem, crlList, plContext),
|
||||
PKIX_CHECK_ONLY_FATAL(
|
||||
pkix_pl_CRL_CreateToList(derCrlItem, crlList,
|
||||
plContext),
|
||||
PKIX_CRLCREATETOLISTFAILED);
|
||||
derCrlItem = *attrVal++;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user