1
0
Fork 0
mirror of https://github.com/yuzu-emu/mbedtls.git synced 2025-05-16 16:52:11 +00:00

ct_lt_mpi_uint: make use of biL

This commit is contained in:
Janos Follath 2019-10-14 08:59:14 +01:00
parent c3b376e2f2
commit db9f449409

View file

@ -942,7 +942,7 @@ static unsigned ct_lt_mpi_uint( const mbedtls_mpi_uint x,
ret |= y & cond; ret |= y & cond;
ret = ret >> ( sizeof( mbedtls_mpi_uint ) * 8 - 1 ); ret = ret >> ( biL - 1 );
return ret; return ret;
} }