summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtchang%redhat.com <devnull@localhost>2006-05-05 23:11:14 +0000
committerwtchang%redhat.com <devnull@localhost>2006-05-05 23:11:14 +0000
commit34459a4d2f50eabf929a1b629463ac3a4bac4d0b (patch)
tree40b50052467bfa383f32c34274e12e378a54cfd6
parent51a1377bda540505683bfcaa4ab17c1745fb4d32 (diff)
downloadnss-hg-34459a4d2f50eabf929a1b629463ac3a4bac4d0b.tar.gz
Bugzilla Bug 334679: removed a duplicate line in ec_GF2m_validate_point.
r=douglas.stebila. Tag: NSS_3_11_BRANCH
-rw-r--r--security/nss/lib/freebl/ecl/ec2_aff.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/security/nss/lib/freebl/ecl/ec2_aff.c b/security/nss/lib/freebl/ecl/ec2_aff.c
index 45b277001..64bb6fecc 100644
--- a/security/nss/lib/freebl/ecl/ec2_aff.c
+++ b/security/nss/lib/freebl/ecl/ec2_aff.c
@@ -312,7 +312,6 @@ ec_GF2m_validate_point(const mp_int *px, const mp_int *py, const ECGroup *group)
/* left-hand side: y^2 + x*y */
MP_CHECKOK( group->meth->field_sqr(&pyt, &accl, group->meth) );
MP_CHECKOK( group->meth->field_mul(&pxt, &pyt, &tmp, group->meth) );
- MP_CHECKOK( group->meth->field_mul(&pxt, &pyt, &tmp, group->meth) );
MP_CHECKOK( group->meth->field_add(&accl, &tmp, &accl, group->meth) );
/* right-hand side: x^3 + a*x^2 + b */
MP_CHECKOK( group->meth->field_sqr(&pxt, &tmp, group->meth) );