[git commit] tls: P256: trivial x86-64 fix

Denys Vlasenko vda.linux at googlemail.com
Sat Nov 27 18:36:23 UTC 2021


commit: https://git.busybox.net/busybox/commit/?id=0b13ab66f43fc1a9437361cfcd33b485422eb0ae
branch: https://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 networking/tls_sp_c32.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/networking/tls_sp_c32.c b/networking/tls_sp_c32.c
index 3452b08b9..4c8f08d4e 100644
--- a/networking/tls_sp_c32.c
+++ b/networking/tls_sp_c32.c
@@ -500,7 +500,7 @@ static void sp_256to512_mul_8(sp_digit* r, const sp_digit* a, const sp_digit* b)
 #elif ALLOW_ASM && defined(__GNUC__) && defined(__x86_64__)
 	const uint64_t* aa = (const void*)a;
 	const uint64_t* bb = (const void*)b;
-	const uint64_t* rr = (const void*)r;
+	uint64_t* rr = (void*)r;
 	int k;
 	uint64_t accl;
 	uint64_t acch;


More information about the busybox-cvs mailing list