remove malloc casts
[openssl.git] / crypto / x509 / x509_req.c
index 682c2c2acbaead9faf786b00d8ac2f79ebebc4f5..e01fc79d6ecaacab2711c3fac8b3eb19fa4444ce 100644 (file)
@@ -83,7 +83,7 @@ X509_REQ *X509_to_X509_REQ(X509 *x, EVP_PKEY *pkey, const EVP_MD *md)
     ri = ret->req_info;
 
     ri->version->length = 1;
-    ri->version->data = (unsigned char *)OPENSSL_malloc(1);
+    ri->version->data = OPENSSL_malloc(1);
     if (ri->version->data == NULL)
         goto err;
     ri->version->data[0] = 0;   /* version == 0 */