summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo Buehler <tb@cvs.openbsd.org>2023-03-30 14:23:51 +0000
committerTheo Buehler <tb@cvs.openbsd.org>2023-03-30 14:23:51 +0000
commitc8d222aba3d7a7a1cb70509a026d4a2b83458c39 (patch)
tree7bd167cac4c1affee978f70fef1d23b33161cd48
parentfbb9b6790885ae3ad7a8463e33fe506d9ba7578a (diff)
bio_ndef: add an empty line before return
-rw-r--r--lib/libcrypto/asn1/bio_ndef.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libcrypto/asn1/bio_ndef.c b/lib/libcrypto/asn1/bio_ndef.c
index b1fcc4dd156..2aa323a8984 100644
--- a/lib/libcrypto/asn1/bio_ndef.c
+++ b/lib/libcrypto/asn1/bio_ndef.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bio_ndef.c,v 1.20 2023/03/15 06:30:21 tb Exp $ */
+/* $OpenBSD: bio_ndef.c,v 1.21 2023/03/30 14:23:50 tb Exp $ */
/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
* project.
*/
@@ -161,6 +161,7 @@ BIO_new_NDEF(BIO *out, ASN1_VALUE *val, const ASN1_ITEM *it)
err:
BIO_pop(pop_bio);
BIO_free(asn_bio);
+
return NULL;
}