summaryrefslogtreecommitdiffstats
path: root/crypto/ripemd/rmd_one.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/ripemd/rmd_one.c')
-rw-r--r--crypto/ripemd/rmd_one.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ripemd/rmd_one.c b/crypto/ripemd/rmd_one.c
index c3193bd723..cc01f15c7f 100644
--- a/crypto/ripemd/rmd_one.c
+++ b/crypto/ripemd/rmd_one.c
@@ -24,5 +24,5 @@ unsigned char *RIPEMD160(const unsigned char *d, size_t n, unsigned char *md)
RIPEMD160_Update(&c, d, n);
RIPEMD160_Final(md, &c);
OPENSSL_cleanse(&c, sizeof(c)); /* security consideration */
- return (md);
+ return md;
}