mirror of
				https://github.com/cuberite/polarssl.git
				synced 2025-11-03 12:11:27 -05:00 
			
		
		
		
	Add explicit unsigned-to-signed integer conversion
The previous code triggered a compiler warning because of a comparison of a signed and an unsigned integer. The conversion is safe because `len` is representable by 16-bits, hence smaller than the maximum integer.
This commit is contained in:
		
							parent
							
								
									dc71ef8fcc
								
							
						
					
					
						commit
						8df10232cf
					
				@ -2106,7 +2106,7 @@ static int ssl_parse_server_psk_hint( mbedtls_ssl_context *ssl,
 | 
			
		||||
    len = (*p)[0] << 8 | (*p)[1];
 | 
			
		||||
    *p += 2;
 | 
			
		||||
 | 
			
		||||
    if( end - (*p) < len )
 | 
			
		||||
    if( end - (*p) < (int) len )
 | 
			
		||||
    {
 | 
			
		||||
        MBEDTLS_SSL_DEBUG_MSG( 1, ( "bad server key exchange message "
 | 
			
		||||
                                    "(psk_identity_hint length)" ) );
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user