diff options
Diffstat (limited to 'src/lib/libcrypto/bn/bn_lib.c')
-rw-r--r-- | src/lib/libcrypto/bn/bn_lib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/bn/bn_lib.c b/src/lib/libcrypto/bn/bn_lib.c index 9da03e2c6e..49cc6662db 100644 --- a/src/lib/libcrypto/bn/bn_lib.c +++ b/src/lib/libcrypto/bn/bn_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: bn_lib.c,v 1.77 2023/03/27 08:37:33 tb Exp $ */ | 1 | /* $OpenBSD: bn_lib.c,v 1.78 2023/03/27 10:25:02 tb 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 | * |
@@ -333,7 +333,7 @@ BN_dup(const BIGNUM *a) | |||
333 | t = BN_new(); | 333 | t = BN_new(); |
334 | if (t == NULL) | 334 | if (t == NULL) |
335 | return NULL; | 335 | return NULL; |
336 | if (!BN_copy(t, a)) { | 336 | if (!bn_copy(t, a)) { |
337 | BN_free(t); | 337 | BN_free(t); |
338 | return NULL; | 338 | return NULL; |
339 | } | 339 | } |