summaryrefslogtreecommitdiffstats
path: root/crypto/x509v3/v3_asid.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2017-08-02 15:29:31 +0100
committerMatt Caswell <matt@openssl.org>2017-08-21 08:44:44 +0100
commit888098304b0a77aee2d5ca5951ee5fccfeb6b1c2 (patch)
tree6f0e8a65eb1d46c68d1f5bdcd9da1d2ffd9a11fe /crypto/x509v3/v3_asid.c
parent638c2dd0ab504e22af08e4d56b43959a8be2382e (diff)
More updates following review feedback
Reviewed-by: Andy Polyakov <appro@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3740)
Diffstat (limited to 'crypto/x509v3/v3_asid.c')
-rw-r--r--crypto/x509v3/v3_asid.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/crypto/x509v3/v3_asid.c b/crypto/x509v3/v3_asid.c
index 66259bae1b..6bc4afd38c 100644
--- a/crypto/x509v3/v3_asid.c
+++ b/crypto/x509v3/v3_asid.c
@@ -743,11 +743,6 @@ static int asid_validate_path_internal(X509_STORE_CTX *ctx,
} else {
i = 0;
x = sk_X509_value(chain, i);
- if (!ossl_assert(x != NULL)) {
- if (ctx != NULL)
- ctx->error = X509_V_ERR_UNSPECIFIED;
- return 0;
- }
if ((ext = x->rfc3779_asid) == NULL)
goto done;
}
@@ -857,8 +852,10 @@ int X509v3_asid_validate_path(X509_STORE_CTX *ctx)
{
if (ctx->chain == NULL
|| sk_X509_num(ctx->chain) == 0
- || ctx->verify_cb == NULL)
+ || ctx->verify_cb == NULL) {
+ ctx->error = X509_V_ERR_UNSPECIFIED;
return 0;
+ }
return asid_validate_path_internal(ctx, ctx->chain, NULL);
}