mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2026-09-17 15:49:56 +00:00
Fix for bug introduced in backporting MPI MSVC fix
Some variables were being declared twice in int_div_int() due to an error in cherry-picking the commit from mbedtls-1.3
This commit is contained in:
@@ -1127,10 +1127,6 @@ static t_uint int_div_int(t_uint u1, t_uint u0, t_uint d, t_uint *r)
|
||||
|
||||
return (t_uint) quotient;
|
||||
#else
|
||||
const t_uint radix = 1 << biH;
|
||||
t_uint d0, d1, q0, q1, rAX, r0, quotient;
|
||||
t_uint u0_msw, u0_lsw;
|
||||
int s;
|
||||
|
||||
/*
|
||||
* Algorithm D, Section 4.3.1 - The Art of Computer Programming
|
||||
|
||||
Reference in New Issue
Block a user