diff options
author | tb <> | 2024-06-18 05:37:24 +0000 |
---|---|---|
committer | tb <> | 2024-06-18 05:37:24 +0000 |
commit | 906c4aab1d13f3889e40a15f35742f194aef4209 (patch) | |
tree | 1ebcf9a41d47a865d25f4fc9f1ba340fb428d3ca /src | |
parent | 4a78fe226ccc6723fec3007137fbf245ed54709b (diff) | |
download | openbsd-906c4aab1d13f3889e40a15f35742f194aef4209.tar.gz openbsd-906c4aab1d13f3889e40a15f35742f194aef4209.tar.bz2 openbsd-906c4aab1d13f3889e40a15f35742f194aef4209.zip |
do_ext_i2d(): move empty line to the proper place
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/x509/x509_conf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/x509/x509_conf.c b/src/lib/libcrypto/x509/x509_conf.c index d7c1232831..454b80937c 100644 --- a/src/lib/libcrypto/x509/x509_conf.c +++ b/src/lib/libcrypto/x509/x509_conf.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: x509_conf.c,v 1.11 2024/06/18 05:35:30 tb Exp $ */ | 1 | /* $OpenBSD: x509_conf.c,v 1.12 2024/06/18 05:37:24 tb 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 1999. | 3 | * project 1999. |
4 | */ | 4 | */ |
@@ -227,8 +227,8 @@ do_ext_i2d(const X509V3_EXT_METHOD *method, int ext_nid, int crit, | |||
227 | free(ext_der); | 227 | free(ext_der); |
228 | ASN1_OCTET_STRING_free(ext_oct); | 228 | ASN1_OCTET_STRING_free(ext_oct); |
229 | X509V3error(ERR_R_MALLOC_FAILURE); | 229 | X509V3error(ERR_R_MALLOC_FAILURE); |
230 | return NULL; | ||
231 | 230 | ||
231 | return NULL; | ||
232 | } | 232 | } |
233 | 233 | ||
234 | /* Given an internal structure, nid and critical flag create an extension */ | 234 | /* Given an internal structure, nid and critical flag create an extension */ |