projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
406c6f6
)
Unused variable removed.
author
Richard Levitte
<levitte@openssl.org>
Wed, 27 Nov 2002 13:40:41 +0000
(13:40 +0000)
committer
Richard Levitte
<levitte@openssl.org>
Wed, 27 Nov 2002 13:40:41 +0000
(13:40 +0000)
crypto/bn/bn_gf2m.c
patch
|
blob
|
history
diff --git
a/crypto/bn/bn_gf2m.c
b/crypto/bn/bn_gf2m.c
index 826a0497e80a65aeb073fc1113dc647a9201eafe..6edd8ab22b746e903de69197a6d995f69c6281ad 100644
(file)
--- a/
crypto/bn/bn_gf2m.c
+++ b/
crypto/bn/bn_gf2m.c
@@
-853,7
+853,7
@@
int BN_GF2m_mod_sqrt(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx)
*/
int BN_GF2m_mod_solve_quad_arr(BIGNUM *r, const BIGNUM *a_, const unsigned int p[], BN_CTX *ctx)
{
- int ret = 0,
i,
count = 0;
+ int ret = 0, count = 0;
unsigned int j;
BIGNUM *a, *z, *rho, *w, *w2, *tmp;