summaryrefslogtreecommitdiffstats
path: root/crypto/dsa/dsa_lib.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2016-03-07 17:31:00 +0000
committerDr. Stephen Henson <steve@openssl.org>2016-03-07 22:15:04 +0000
commite1d9f1ab39eeab0c3c2b9415e0aaaa8c05858f77 (patch)
treeac2225dbe271f7b6250653cdddd21382c781b163 /crypto/dsa/dsa_lib.c
parentf7c4584b15320d94863daba2996eee21dde23732 (diff)
Remove kinv/r fields from DSA structure.
The kinv/r fields in the DSA structure are not used by OpenSSL internally and should not be used in general. Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/dsa/dsa_lib.c')
-rw-r--r--crypto/dsa/dsa_lib.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/crypto/dsa/dsa_lib.c b/crypto/dsa/dsa_lib.c
index f89297313a..f7795b27bd 100644
--- a/crypto/dsa/dsa_lib.c
+++ b/crypto/dsa/dsa_lib.c
@@ -180,8 +180,6 @@ void DSA_free(DSA *r)
BN_clear_free(r->g);
BN_clear_free(r->pub_key);
BN_clear_free(r->priv_key);
- BN_clear_free(r->kinv);
- BN_clear_free(r->r);
OPENSSL_free(r);
}