aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/ec/ecp_nist.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2002-11-15 12:43:15 +0000
committerBodo Möller <bodo@openssl.org>2002-11-15 12:43:15 +0000
commitacce40c5850df399a01fc643dbc0fe4bd39d00d1 (patch)
treece83bc42cad13e3f7c740226d9b72d060a3783b3 /crypto/ec/ecp_nist.c
parent6dc78bf7e883799eca7f6a497b1577ba4cf4f4d1 (diff)
downloadopenssl-acce40c5850df399a01fc643dbc0fe4bd39d00d1.tar.gz
this method does not need field_data1
Diffstat (limited to 'crypto/ec/ecp_nist.c')
-rw-r--r--crypto/ec/ecp_nist.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/crypto/ec/ecp_nist.c b/crypto/ec/ecp_nist.c
index 156bc54a07..0b39bb6166 100644
--- a/crypto/ec/ecp_nist.c
+++ b/crypto/ec/ecp_nist.c
@@ -118,7 +118,6 @@ int ec_GFp_nist_group_init(EC_GROUP *group)
int ok;
ok = ec_GFp_simple_group_init(group);
- group->field_data1 = NULL;
return ok;
}
@@ -228,8 +227,6 @@ int ec_GFp_nist_group_copy(EC_GROUP *dest, const EC_GROUP *src)
dest->a_is_minus3 = src->a_is_minus3;
- dest->field_data1 = src->field_data1;
-
return 1;
}