This commit is contained in:
Bodo Möller 2001-09-10 16:57:06 +00:00
parent 5e54b4f364
commit 5a85385387

View File

@ -137,6 +137,7 @@ int EVP_DigestInit(EVP_MD_CTX *ctx, const EVP_MD *type)
ctx->digest=type;
if (type->ctx_size)
ctx->md_data=OPENSSL_malloc(type->ctx_size);
}
return type->init(ctx);
}