diff options
author | tb <> | 2023-03-30 14:23:50 +0000 |
---|---|---|
committer | tb <> | 2023-03-30 14:23:50 +0000 |
commit | cd04e6eae400be089510dd680d81c7f1c1069cb0 (patch) | |
tree | caa31ee9ee2eb6a906987a1474a9c167c0d4e002 /src | |
parent | 442c5fe3daa0d9f181641db965afd2bf416fb83f (diff) | |
download | openbsd-cd04e6eae400be089510dd680d81c7f1c1069cb0.tar.gz openbsd-cd04e6eae400be089510dd680d81c7f1c1069cb0.tar.bz2 openbsd-cd04e6eae400be089510dd680d81c7f1c1069cb0.zip |
bio_ndef: add an empty line before return
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/asn1/bio_ndef.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libcrypto/asn1/bio_ndef.c b/src/lib/libcrypto/asn1/bio_ndef.c index b1fcc4dd15..2aa323a898 100644 --- a/src/lib/libcrypto/asn1/bio_ndef.c +++ b/src/lib/libcrypto/asn1/bio_ndef.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: bio_ndef.c,v 1.20 2023/03/15 06:30:21 tb Exp $ */ | 1 | /* $OpenBSD: bio_ndef.c,v 1.21 2023/03/30 14:23:50 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. | 3 | * project. |
4 | */ | 4 | */ |
@@ -161,6 +161,7 @@ BIO_new_NDEF(BIO *out, ASN1_VALUE *val, const ASN1_ITEM *it) | |||
161 | err: | 161 | err: |
162 | BIO_pop(pop_bio); | 162 | BIO_pop(pop_bio); |
163 | BIO_free(asn_bio); | 163 | BIO_free(asn_bio); |
164 | |||
164 | return NULL; | 165 | return NULL; |
165 | } | 166 | } |
166 | 167 | ||