diff options
| author | beck <> | 2017-01-29 17:49:23 +0000 |
|---|---|---|
| committer | beck <> | 2017-01-29 17:49:23 +0000 |
| commit | d1f47bd292f36094480caa49ada36b99a69c59b0 (patch) | |
| tree | 1a54abba678898ee5270ae4f3404a50ee9a92eea /src/lib/libcrypto/x509v3/v3_ncons.c | |
| parent | f8c627888330b75c2eea8a3c27d0efe947a4f9da (diff) | |
| download | openbsd-d1f47bd292f36094480caa49ada36b99a69c59b0.tar.gz openbsd-d1f47bd292f36094480caa49ada36b99a69c59b0.tar.bz2 openbsd-d1f47bd292f36094480caa49ada36b99a69c59b0.zip | |
Send the function codes from the error functions to the bit bucket,
as was done earlier in libssl. Thanks inoguchi@ for noticing
libssl had more reacharounds into this.
ok jsing@ inoguchi@
Diffstat (limited to 'src/lib/libcrypto/x509v3/v3_ncons.c')
| -rw-r--r-- | src/lib/libcrypto/x509v3/v3_ncons.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/lib/libcrypto/x509v3/v3_ncons.c b/src/lib/libcrypto/x509v3/v3_ncons.c index e96d426de6..88643981ca 100644 --- a/src/lib/libcrypto/x509v3/v3_ncons.c +++ b/src/lib/libcrypto/x509v3/v3_ncons.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: v3_ncons.c,v 1.10 2016/12/30 15:54:49 jsing Exp $ */ | 1 | /* $OpenBSD: v3_ncons.c,v 1.11 2017/01/29 17:49:23 beck Exp $ */ |
| 2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
| 3 | * project. | 3 | * project. |
| 4 | */ | 4 | */ |
| @@ -204,8 +204,7 @@ v2i_NAME_CONSTRAINTS(const X509V3_EXT_METHOD *method, X509V3_CTX *ctx, | |||
| 204 | ptree = &ncons->excludedSubtrees; | 204 | ptree = &ncons->excludedSubtrees; |
| 205 | tval.name = val->name + 9; | 205 | tval.name = val->name + 9; |
| 206 | } else { | 206 | } else { |
| 207 | X509V3err(X509V3_F_V2I_NAME_CONSTRAINTS, | 207 | X509V3error(X509V3_R_INVALID_SYNTAX); |
| 208 | X509V3_R_INVALID_SYNTAX); | ||
| 209 | goto err; | 208 | goto err; |
| 210 | } | 209 | } |
| 211 | tval.value = val->value; | 210 | tval.value = val->value; |
| @@ -222,7 +221,7 @@ v2i_NAME_CONSTRAINTS(const X509V3_EXT_METHOD *method, X509V3_CTX *ctx, | |||
| 222 | return ncons; | 221 | return ncons; |
| 223 | 222 | ||
| 224 | memerr: | 223 | memerr: |
| 225 | X509V3err(X509V3_F_V2I_NAME_CONSTRAINTS, ERR_R_MALLOC_FAILURE); | 224 | X509V3error(ERR_R_MALLOC_FAILURE); |
| 226 | err: | 225 | err: |
| 227 | if (ncons) | 226 | if (ncons) |
| 228 | NAME_CONSTRAINTS_free(ncons); | 227 | NAME_CONSTRAINTS_free(ncons); |
