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:
0ef85c7
)
Put more debug screening in BN_div() and correct a comment.
author
Geoff Thorpe
<geoff@openssl.org>
Thu, 6 Nov 2003 23:11:07 +0000
(23:11 +0000)
committer
Geoff Thorpe
<geoff@openssl.org>
Thu, 6 Nov 2003 23:11:07 +0000
(23:11 +0000)
crypto/bn/bn_div.c
patch
|
blob
|
history
diff --git
a/crypto/bn/bn_div.c
b/crypto/bn/bn_div.c
index ff218957b1d2290ec7839b798342f6c1a8dc0b3e..0fef7ced207fb80b60a2bf7c051c36e32fe4c46b 100644
(file)
--- a/
crypto/bn/bn_div.c
+++ b/
crypto/bn/bn_div.c
@@
-185,6
+185,8
@@
int BN_div(BIGNUM *dv, BIGNUM *rm, const BIGNUM *num, const BIGNUM *divisor,
BN_ULONG d0,d1;
int num_n,div_n;
+ bn_check_top(dv);
+ bn_check_top(rm);
bn_check_top(num);
bn_check_top(divisor);
@@
-233,7
+235,7
@@
int BN_div(BIGNUM *dv, BIGNUM *rm, const BIGNUM *num, const BIGNUM *divisor,
wnum.dmax= snum->dmax - loop; /* so we don't step out of bounds */
/* Get the top 2 words of sdiv */
- /*
i
=sdiv->top; */
+ /*
div_n
=sdiv->top; */
d0=sdiv->d[div_n-1];
d1=(div_n == 1)?0:sdiv->d[div_n-2];