aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/evp/digest.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2001-09-10 16:57:06 +0000
committerBodo Möller <bodo@openssl.org>2001-09-10 16:57:06 +0000
commit5a8538538749443fc0a0d5aee03ceff355ccd8a6 (patch)
tree20d6f0ea42d89f2fab77c0020fa95f9a57fe2af7 /crypto/evp/digest.c
parent5e54b4f364f516a212f08e7ac4e611ea5f750aba (diff)
downloadopenssl-5a8538538749443fc0a0d5aee03ceff355ccd8a6.tar.gz
typo
Diffstat (limited to 'crypto/evp/digest.c')
-rw-r--r--crypto/evp/digest.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/evp/digest.c b/crypto/evp/digest.c
index 13ffbb7209..0143ab6f94 100644
--- a/crypto/evp/digest.c
+++ b/crypto/evp/digest.c
@@ -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);
}