From 53553e89ed47c42cd2ac8b615a2ed6620bb1d942 Mon Sep 17 00:00:00 2001 From: libretroadmin Date: Sat, 6 Apr 2024 20:18:45 +0200 Subject: [PATCH] Buildfix --- deps/mbedtls/bignum.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/mbedtls/bignum.c b/deps/mbedtls/bignum.c index aa98e21047..9913c33499 100644 --- a/deps/mbedtls/bignum.c +++ b/deps/mbedtls/bignum.c @@ -1101,7 +1101,7 @@ __attribute__ ((noinline)) #endif void mpi_mul_hlp( size_t i, mbedtls_mpi_uint *s, mbedtls_mpi_uint *d, mbedtls_mpi_uint b ) { - mbedtls_mpi_uint c = 0; + mbedtls_mpi_uint c = 0, t = 0; #if defined(MULADDC_HUIT) for( ; i >= 8; i -= 8 )