summaryrefslogtreecommitdiffstats
path: root/crypto/md5/md5_local.h
diff options
context:
space:
mode:
authorPatrick Steuer <patrick.steuer@de.ibm.com>2019-10-31 14:17:31 +0100
committerPatrick Steuer <patrick.steuer@de.ibm.com>2019-11-01 15:59:40 +0100
commitef0be09e045a934e2bb07337218fc336f7f722d7 (patch)
treea565cb7826ad1bebbb3544c341ba141240011385 /crypto/md5/md5_local.h
parentc38761171f428d80cd7906b12a0cdac6d1285a7d (diff)
md4/md5: macros should not include the line following them
Signed-off-by: Patrick Steuer <patrick.steuer@de.ibm.com> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/10311) (cherry picked from commit 351ba5bd27645d5b5a2bc643b2709bd30bcdf09c)
Diffstat (limited to 'crypto/md5/md5_local.h')
-rw-r--r--crypto/md5/md5_local.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/md5/md5_local.h b/crypto/md5/md5_local.h
index 9e537ed15b..b0087bea81 100644
--- a/crypto/md5/md5_local.h
+++ b/crypto/md5/md5_local.h
@@ -62,7 +62,7 @@ void md5_block_data_order(MD5_CTX *c, const void *p, size_t num);
#define R0(a,b,c,d,k,s,t) { \
a+=((k)+(t)+F((b),(c),(d))); \
a=ROTATE(a,s); \
- a+=b; };\
+ a+=b; };
#define R1(a,b,c,d,k,s,t) { \
a+=((k)+(t)+G((b),(c),(d))); \