Remove a strict aliasing issue with pre-computed curve448 constants
[openssl.git] / crypto / md5 / md5_one.c
index becd87e4d6021c31e584e07706873f7ceeb0bd75..c3bf2f88f0bad54ac116a50d837c58dfc7ffa074 100644 (file)
@@ -43,5 +43,5 @@ unsigned char *MD5(const unsigned char *d, size_t n, unsigned char *md)
 #endif
     MD5_Final(md, &c);
     OPENSSL_cleanse(&c, sizeof(c)); /* security consideration */
-    return (md);
+    return md;
 }