remove malloc casts
[openssl.git] / crypto / evp / p_open.c
index 229eb6417af87235138056e2d38957b035cbb3de..adaa42fa1e319135b2d39d75b083de50ef7191be 100644 (file)
@@ -88,7 +88,7 @@ int EVP_OpenInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *type,
     }
 
     size = RSA_size(priv->pkey.rsa);
-    key = (unsigned char *)OPENSSL_malloc(size + 2);
+    key = OPENSSL_malloc(size + 2);
     if (key == NULL) {
         /* ERROR */
         EVPerr(EVP_F_EVP_OPENINIT, ERR_R_MALLOC_FAILURE);