From 65213f6eba8c5f3cb05a658395a358eb692b45d7 Mon Sep 17 00:00:00 2001 From: Loup Vaillant Date: Sun, 30 Jan 2022 14:48:09 +0100 Subject: [PATCH] Readability nitpick --- src/monocypher.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/monocypher.c b/src/monocypher.c index 8fe3bdf..31f1f59 100644 --- a/src/monocypher.c +++ b/src/monocypher.c @@ -1690,9 +1690,7 @@ static void mul_add(u8 r[32], const u8 a[32], const u8 b[32], const u8 c[32]) { u32 A[8]; load32_le_buf(A, a, 8); u32 B[8]; load32_le_buf(B, b, 8); - u32 p[16]; - load32_le_buf(p, c, 8); - ZERO(p + 8, 8); + u32 p[16]; load32_le_buf(p, c, 8); ZERO(p + 8, 8); multiply(p, A, B); mod_l(r, p); WIPE_BUFFER(p); -- 2.47.3