summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/bn/bn_print.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/bn/bn_print.c')
-rw-r--r--src/lib/libcrypto/bn/bn_print.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/libcrypto/bn/bn_print.c b/src/lib/libcrypto/bn/bn_print.c
index ad2e3ba16c..4576e25f49 100644
--- a/src/lib/libcrypto/bn/bn_print.c
+++ b/src/lib/libcrypto/bn/bn_print.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: bn_print.c,v 1.35 2022/11/24 01:30:01 jsing Exp $ */ 1/* $OpenBSD: bn_print.c,v 1.36 2022/11/26 13:56:33 jsing Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -254,7 +254,6 @@ BN_hex2bn(BIGNUM **bn, const char *a)
254 ret->neg = neg; 254 ret->neg = neg;
255 255
256 *bn = ret; 256 *bn = ret;
257 bn_check_top(ret);
258 return (num); 257 return (num);
259 258
260err: 259err:
@@ -322,7 +321,6 @@ BN_dec2bn(BIGNUM **bn, const char *a)
322 321
323 bn_correct_top(ret); 322 bn_correct_top(ret);
324 *bn = ret; 323 *bn = ret;
325 bn_check_top(ret);
326 return (num); 324 return (num);
327 325
328err: 326err: