Lines Matching refs:crls
816 * Initialize or extend, if *crls != NULL, a certificate stack.
817 * The caller is responsible for freeing *crls if its value is left not NULL.
819 int load_crls(const char *uri, STACK_OF(X509_CRL) **crls,
822 int was_NULL = *crls == NULL;
825 NULL, NULL, NULL, crls);
828 sk_X509_CRL_pop_free(*crls, X509_CRL_free);
829 *crls = NULL;
2410 STACK_OF(X509_CRL) *crls = NULL;
2414 crls = sk_X509_CRL_new_null();
2415 if (!crls)
2422 sk_X509_CRL_free(crls);
2425 sk_X509_CRL_push(crls, crl);
2431 sk_X509_CRL_push(crls, crl);
2432 return crls;