diff options
author | Paul Suhler <Paul.Suhler@quantum.com> | 2014-09-09 00:34:48 +0200 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2014-09-09 00:50:07 +0200 |
commit | 4cd1119df38b095b6981dfee993195f18ed3c619 (patch) | |
tree | 10c15dbd929eb297ae88eca5a68fdffcda3d4c43 /crypto | |
parent | RT2626: Change default_bits from 1K to 2K (diff) | |
download | openssl-4cd1119df38b095b6981dfee993195f18ed3c619.tar.xz openssl-4cd1119df38b095b6981dfee993195f18ed3c619.zip |
RT2841: Extra return in check_issued
Reviewed-by: Dr. Stephen Henson <steve@openssl.org>
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/x509/x509_vfy.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/crypto/x509/x509_vfy.c b/crypto/x509/x509_vfy.c index 85aa1133f8..88bff6366f 100644 --- a/crypto/x509/x509_vfy.c +++ b/crypto/x509/x509_vfy.c @@ -520,7 +520,6 @@ static int check_issued(X509_STORE_CTX *ctx, X509 *x, X509 *issuer) ctx->current_cert = x; ctx->current_issuer = issuer; return ctx->verify_cb(0, ctx); - return 0; } /* Alternative lookup method: look from a STACK stored in other_ctx */ |