match new with malloc -> calloc please

> +static inline HMAC_CTX *HMAC_CTX_new(void)
> +{
> +     HMAC_CTX *ctx = malloc(sizeof(*ctx));
> +     if (ctx == NULL)
> +             return NULL;
> +     HMAC_CTX_init(ctx);
> +     return ctx;
> +}
> +

Reply via email to