From 77817cd019283db4bcb1b38ec8ab86ea629a5798 Mon Sep 17 00:00:00 2001
From: Sergey Lyubka <valenok@gmail.com>
Date: Tue, 28 Jan 2014 13:42:26 +0000
Subject: [PATCH] Squashed the warnings

---
 mongoose.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/mongoose.c b/mongoose.c
index fde9ea941..5fb15d246 100644
--- a/mongoose.c
+++ b/mongoose.c
@@ -1709,8 +1709,9 @@ static void SHA1Transform(uint32_t state[5], const unsigned char buffer[64]) {
   state[4] += e;
   // Erase working structures. The order of operations is important,
   // used to ensure that compiler doesn't optimize those out.
+  memset(block, 0, sizeof(block));
   a = b = c = d = e = 0;
-  memset(block, a, sizeof(block));
+  (void) a; (void) b; (void) c; (void) d; (void) e;
 }
 
 static void SHA1Init(SHA1_CTX* context) {
-- 
GitLab