aboutsummaryrefslogtreecommitdiff
path: root/crypto/mdc2/mdc2_one.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/mdc2/mdc2_one.c')
-rw-r--r--crypto/mdc2/mdc2_one.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/mdc2/mdc2_one.c b/crypto/mdc2/mdc2_one.c
index 472a5ec..58e1e0f 100644
--- a/crypto/mdc2/mdc2_one.c
+++ b/crypto/mdc2/mdc2_one.c
@@ -23,5 +23,5 @@ unsigned char *MDC2(const unsigned char *d, size_t n, unsigned char *md)
MDC2_Update(&c, d, n);
MDC2_Final(md, &c);
OPENSSL_cleanse(&c, sizeof(c)); /* security consideration */
- return (md);
+ return md;
}