summaryrefslogtreecommitdiffstats
path: root/crypto/asn1/x_req.c
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2000-01-30 23:33:40 +0000
committerUlf Möller <ulf@openssl.org>2000-01-30 23:33:40 +0000
commit51ca375e7e640c6f1441d74abcda731ef7306d0c (patch)
tree8b661d70f98b8d819edea5f777117ec7be03fab7 /crypto/asn1/x_req.c
parent1749d8a039e637a6ab06f30cd0351605b44dc625 (diff)
Seek out and destroy another evil cast.
Diffstat (limited to 'crypto/asn1/x_req.c')
-rw-r--r--crypto/asn1/x_req.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/asn1/x_req.c b/crypto/asn1/x_req.c
index 030e4ad846..c170b02274 100644
--- a/crypto/asn1/x_req.c
+++ b/crypto/asn1/x_req.c
@@ -163,7 +163,7 @@ void X509_REQ_INFO_free(X509_REQ_INFO *a)
X509_NAME_free(a->subject);
X509_PUBKEY_free(a->pubkey);
sk_X509_ATTRIBUTE_pop_free(a->attributes,X509_ATTRIBUTE_free);
- Free((char *)a);
+ Free(a);
}
int i2d_X509_REQ(X509_REQ *a, unsigned char **pp)
@@ -230,7 +230,7 @@ void X509_REQ_free(X509_REQ *a)
X509_REQ_INFO_free(a->req_info);
X509_ALGOR_free(a->sig_alg);
M_ASN1_BIT_STRING_free(a->signature);
- Free((char *)a);
+ Free(a);
}