]> granicus.if.org Git - neomutt/commitdiff
test: fix compound initialization
authorPietro Cerutti <gahr@gahr.ch>
Tue, 30 Apr 2019 08:13:01 +0000 (08:13 +0000)
committerRichard Russon <rich@flatcap.org>
Tue, 30 Apr 2019 10:22:04 +0000 (11:22 +0100)
test/sha1/mutt_sha1_final.c
test/sha1/mutt_sha1_update.c

index 9e9fea093cfd2d85727c687eab3b21c60aa9c5f3..ffe2903264e4c0acc9fd90c9e5d87e1337128401 100644 (file)
@@ -30,7 +30,8 @@ void test_mutt_sha1_final(void)
   // void mutt_sha1_final(unsigned char digest[20], struct Sha1Ctx *sha1ctx);
 
   {
-    struct Sha1Ctx sha1ctx = { 0 };
+    struct Sha1Ctx sha1ctx;
+    mutt_sha1_init(&sha1ctx);
     mutt_sha1_final(NULL, &sha1ctx);
     TEST_CHECK_(1, "mutt_sha1_final(NULL, &sha1ctx)");
   }
index 2d59148a699953df043444a38d0eb92419e92bbf..82ca75ba5501d5be3cf46df04e3ff3e5fa933875 100644 (file)
@@ -36,7 +36,8 @@ void test_mutt_sha1_update(void)
   }
 
   {
-    struct Sha1Ctx sha1ctx = { 0 };
+    struct Sha1Ctx sha1ctx;
+    mutt_sha1_init(&sha1ctx);
     mutt_sha1_update(&sha1ctx, NULL, 0);
     TEST_CHECK_(1, "mutt_sha1_update(&sha1ctx, NULL, 0)");
   }