diff options
author | jsg <> | 2014-04-15 11:50:18 +0000 |
---|---|---|
committer | jsg <> | 2014-04-15 11:50:18 +0000 |
commit | ab563839bbe3ddf11336b51c80c7fb09adb04abb (patch) | |
tree | 7142b6a1c5841d7accb0f47c661cd45fbec445f4 /src/lib/libcrypto | |
parent | 90444fe6d595b6409213e69d37914c6ae72c723d (diff) | |
download | openbsd-ab563839bbe3ddf11336b51c80c7fb09adb04abb.tar.gz openbsd-ab563839bbe3ddf11336b51c80c7fb09adb04abb.tar.bz2 openbsd-ab563839bbe3ddf11336b51c80c7fb09adb04abb.zip |
correct cases of code occuring directly after goto/break/return
ok miod@ guenther@
Diffstat (limited to '')
-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 */ |