artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
061a04e
)
remove extra argument
author
bcook
<bcook@openbsd.org>
Tue, 21 Feb 2023 12:20:22 +0000
(12:20 +0000)
committer
bcook
<bcook@openbsd.org>
Tue, 21 Feb 2023 12:20:22 +0000
(12:20 +0000)
ok tb@
lib/libcrypto/bn/bn_mont.c
patch
|
blob
|
history
diff --git
a/lib/libcrypto/bn/bn_mont.c
b/lib/libcrypto/bn/bn_mont.c
index
53ad5aa
..
a54355c
100644
(file)
--- a/
lib/libcrypto/bn/bn_mont.c
+++ b/
lib/libcrypto/bn/bn_mont.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: bn_mont.c,v 1.4
3 2023/02/21 05:58:08 jsing
Exp $ */
+/* $OpenBSD: bn_mont.c,v 1.4
4 2023/02/21 12:20:22 bcook
Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@
-336,7
+336,7
@@
bn_mul_mont(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp,
BN_ULONG c0, c1, *tp, n0 = *n0p;
int i = 0, j;
- tp = calloc(
NULL,
num + 2, sizeof(BN_ULONG));
+ tp = calloc(num + 2, sizeof(BN_ULONG));
if (tp == NULL)
return 0;