diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2024-04-17 21:55:44 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2024-04-17 21:55:44 +0000 |
commit | c5923ac7a186cadfacfab23370b6114874acef06 (patch) | |
tree | 06ee01e7315830414df5043022f3c5240d39954c /lib | |
parent | 243a389a6ab4dfd405e3acb44510c86c9f0427af (diff) |
bn_convert: zap extra blank line
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcrypto/bn/bn_convert.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libcrypto/bn/bn_convert.c b/lib/libcrypto/bn/bn_convert.c index 7c5ba853052..d509a86c081 100644 --- a/lib/libcrypto/bn/bn_convert.c +++ b/lib/libcrypto/bn/bn_convert.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bn_convert.c,v 1.20 2024/04/17 14:47:17 jsing Exp $ */ +/* $OpenBSD: bn_convert.c,v 1.21 2024/04/17 21:55:43 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -736,7 +736,6 @@ BN_mpi2bn(const unsigned char *d, int n, BIGNUM *bn_in) if (!CBS_get_u32(&cbs, &mpi_len)) { BNerror(BN_R_INVALID_LENGTH); return NULL; - } if (CBS_len(&cbs) != mpi_len) { BNerror(BN_R_ENCODING_ERROR); |