Add further missing brackets around macro parameters

This commit is contained in:
Hanno Becker 2018-10-26 09:13:26 +01:00 committed by Gilles Peskine
parent ee60034a60
commit 3ac21aca9b
6 changed files with 10 additions and 10 deletions

View file

@ -148,8 +148,8 @@ int mbedtls_internal_md4_process( mbedtls_md4_context *ctx,
#define P(a,b,c,d,x,s) \
do \
{ \
(a) += F(b,c,d) + (x); \
(a) = S(a,s); \
(a) += F((b),(c),(d)) + (x); \
(a) = S((a),(s)); \
} while( 0 )