mirror of
				https://github.com/yuzu-emu/mbedtls.git
				synced 2025-11-04 13:24:57 +00:00 
			
		
		
		
	Remove a redundant function call
Remove a call to `mbedtls_mpi_bitlen()` since the returned value is
overwritten in the line after. This is redundant since da31fa137a.
Fixes #2377.
			
			
This commit is contained in:
		
							parent
							
								
									b4128bd0c0
								
							
						
					
					
						commit
						ff8d8d72aa
					
				| 
						 | 
					@ -38,6 +38,9 @@ Bugfix
 | 
				
			||||||
     for the parameter.
 | 
					     for the parameter.
 | 
				
			||||||
   * Add a check for MBEDTLS_X509_CRL_PARSE_C in ssl_server2, guarding the crl
 | 
					   * Add a check for MBEDTLS_X509_CRL_PARSE_C in ssl_server2, guarding the crl
 | 
				
			||||||
     sni entry parameter. Reported by inestlerode in #560.
 | 
					     sni entry parameter. Reported by inestlerode in #560.
 | 
				
			||||||
 | 
					   * Remove redundant line for getting the bitlen of a bignum, since the variable
 | 
				
			||||||
 | 
					     holding the returned value is overwritten a line after.
 | 
				
			||||||
 | 
					     Found by irwir in #2377.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Changes
 | 
					Changes
 | 
				
			||||||
   * Return from various debugging routines immediately if the
 | 
					   * Return from various debugging routines immediately if the
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -2333,8 +2333,6 @@ static int mpi_miller_rabin( const mbedtls_mpi *X, size_t rounds,
 | 
				
			||||||
    MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &R, &W ) );
 | 
					    MBEDTLS_MPI_CHK( mbedtls_mpi_copy( &R, &W ) );
 | 
				
			||||||
    MBEDTLS_MPI_CHK( mbedtls_mpi_shift_r( &R, s ) );
 | 
					    MBEDTLS_MPI_CHK( mbedtls_mpi_shift_r( &R, s ) );
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    i = mbedtls_mpi_bitlen( X );
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    for( i = 0; i < rounds; i++ )
 | 
					    for( i = 0; i < rounds; i++ )
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
        /*
 | 
					        /*
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue