Various instances of variables being written to, but then never read.
Reviewed-by: Richard Levitte <levitte@openssl.org>
}
}
argc = opt_num_rest();
- argv = opt_rest();
if (cipher && EVP_CIPHER_flags(cipher) & EVP_CIPH_FLAG_AEAD_CIPHER) {
BIO_printf(bio_err, "%s: AEAD ciphers not supported\n", prog);
}
}
argc = opt_num_rest();
- argv = opt_rest();
ret = 0;
for (argv = opt_rest(); *argv; argv++) {
}
}
argc = opt_num_rest();
- argv = opt_rest();
if (argc != 0) {
BIO_printf(bio_err, "Usage: %s\n", prog);
}
}
argc = opt_num_rest();
- argv = opt_rest();
if (mode == OPT_ERR || argc != 0)
goto opthelp;
BIO_printf(out, "/*\n"
" * Subject: %s\n", buf);
- m = X509_NAME_oneline(X509_get_issuer_name(x), buf, sizeof buf);
+ X509_NAME_oneline(X509_get_issuer_name(x), buf, sizeof buf);
BIO_printf(out, " * Issuer: %s\n"
" */\n", buf);
if (!val)
ASN1err(ASN1_F_B64_READ_ASN1, ASN1_R_DECODE_ERROR);
(void)BIO_flush(bio);
- bio = BIO_pop(bio);
+ BIO_pop(bio);
BIO_free(b64);
return val;
}