From 20815991e97542acb1cb0bbfe1b40019bc875551 Mon Sep 17 00:00:00 2001 From: Loup Vaillant Date: Wed, 16 Dec 2020 09:33:47 +0100 Subject: [PATCH] Fix dead store Fixes #201 --- src/monocypher.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/monocypher.c b/src/monocypher.c index dd38502..3113510 100644 --- a/src/monocypher.c +++ b/src/monocypher.c @@ -1742,7 +1742,6 @@ static void mod_l(u8 reduced[32], const u32 x[16]) } // xr = x - xr u64 carry = 1; - carry = 1; FOR (i, 0, 8) { carry += (u64)x[i] + ~xr[i]; xr[i] = (u32)carry; -- 2.47.3