From 9e051bac139ce07f846d88b90f3ec514c39ea416 Mon Sep 17 00:00:00 2001 From: Geoff Thorpe Date: Sat, 13 Mar 2004 22:10:15 +0000 Subject: Document a change I'd already made, and at the same time, correct the change to work properly; BN_zero() should set 'neg' to zero as well as 'top' to match the behaviour of BN_new(). --- crypto/bn/bn_div.c | 1 - 1 file changed, 1 deletion(-) (limited to 'crypto/bn/bn_div.c') diff --git a/crypto/bn/bn_div.c b/crypto/bn/bn_div.c index 556fcda1e3..3b4392955e 100644 --- a/crypto/bn/bn_div.c +++ b/crypto/bn/bn_div.c @@ -214,7 +214,6 @@ int BN_div(BIGNUM *dv, BIGNUM *rm, const BIGNUM *num, const BIGNUM *divisor, res=BN_CTX_get(ctx); else res=dv; if (sdiv == NULL || res == NULL) goto err; - tmp->neg=0; /* First we normalise the numbers */ norm_shift=BN_BITS2-((BN_num_bits(divisor))%BN_BITS2); -- cgit v1.2.3