summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lib/libcrypto/x509/x509_conf.c4
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 */