From: Loup Vaillant Date: Wed, 16 Dec 2020 08:33:47 +0000 (+0100) Subject: Fix dead store X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=20815991e97542acb1cb0bbfe1b40019bc875551;p=Monocypher.git Fix dead store Fixes #201 --- 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;