diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2023-03-30 14:23:51 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2023-03-30 14:23:51 +0000 |
commit | c8d222aba3d7a7a1cb70509a026d4a2b83458c39 (patch) | |
tree | 7bd167cac4c1affee978f70fef1d23b33161cd48 | |
parent | fbb9b6790885ae3ad7a8463e33fe506d9ba7578a (diff) |
bio_ndef: add an empty line before return
-rw-r--r-- | lib/libcrypto/asn1/bio_ndef.c | 3 |
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; } |