From 44d8ab20e1a3eef04dd8c397f3311f979a03dd92 Mon Sep 17 00:00:00 2001 From: Juliusz Sosinowicz Date: Tue, 19 Oct 2021 16:24:16 +0200 Subject: [PATCH] #456 --- src/internal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal.c b/src/internal.c index d5c3008df..6cebc367e 100644 --- a/src/internal.c +++ b/src/internal.c @@ -16455,7 +16455,7 @@ static WC_INLINE int VerifyMac(WOLFSSL* ssl, const byte* input, word32 msgSz, pad = 0; /* no bad read */ badPadLen = 1; } - PadCheck(dummy, (byte)pad, MAX_PAD_SIZE); /* timing only */ + (void)PadCheck(dummy, (byte)pad, MAX_PAD_SIZE); /* timing only */ ret = ssl->hmac(ssl, verify, input, msgSz - digestSz - pad - 1, pad, content, 1, PEER_ORDER); if (ConstantCompare(verify, input + msgSz - digestSz - pad - 1,