diff options
author | jsg <> | 2014-04-15 11:50:18 +0000 |
---|---|---|
committer | jsg <> | 2014-04-15 11:50:18 +0000 |
commit | b5f70a5b68550fc159451ba6978aa6e3f59d145b (patch) | |
tree | 7142b6a1c5841d7accb0f47c661cd45fbec445f4 /src/lib/libcrypto/x509/x509_vfy.c | |
parent | d94d728a56abdcaec9a7f41d9ca1a3b1602ac1a7 (diff) | |
download | openbsd-b5f70a5b68550fc159451ba6978aa6e3f59d145b.tar.gz openbsd-b5f70a5b68550fc159451ba6978aa6e3f59d145b.tar.bz2 openbsd-b5f70a5b68550fc159451ba6978aa6e3f59d145b.zip |
correct cases of code occuring directly after goto/break/return
ok miod@ guenther@
Diffstat (limited to 'src/lib/libcrypto/x509/x509_vfy.c')
-rw-r--r-- | src/lib/libcrypto/x509/x509_vfy.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/lib/libcrypto/x509/x509_vfy.c b/src/lib/libcrypto/x509/x509_vfy.c index 920066aeba..a82c2872e0 100644 --- a/src/lib/libcrypto/x509/x509_vfy.c +++ b/src/lib/libcrypto/x509/x509_vfy.c | |||
@@ -424,7 +424,6 @@ static int check_issued(X509_STORE_CTX *ctx, X509 *x, X509 *issuer) | |||
424 | ctx->current_cert = x; | 424 | ctx->current_cert = x; |
425 | ctx->current_issuer = issuer; | 425 | ctx->current_issuer = issuer; |
426 | return ctx->verify_cb(0, ctx); | 426 | return ctx->verify_cb(0, ctx); |
427 | return 0; | ||
428 | } | 427 | } |
429 | 428 | ||
430 | /* Alternative lookup method: look from a STACK stored in other_ctx */ | 429 | /* Alternative lookup method: look from a STACK stored in other_ctx */ |