Print this page
4853 illumos-gate is not lint-clean when built with openssl 1.0 (fix openssl 0.9.8 lint)
@@ -875,10 +875,11 @@
/*
* Merge the two stacks of pkcs12 certs.
*/
for (i = 0; i < sk_X509_num(i_anchors); i++) {
+ /* LINTED */
x = sk_X509_delete(i_anchors, i);
(void) sk_X509_push(o_anchors, x);
}
/*
@@ -1087,10 +1088,11 @@
PKCS12_free(p12);
p12 = NULL;
for (i = 0; i < sk_X509_num(certs); i++) {
+ /* LINTED */
x = sk_X509_value(certs, i);
if (!one_name(sunw_issuer_attrs(x, buf, sizeof (buf) - 1),
nvl)) {
goto cleanup;
}