mirror of
				https://github.com/cuberite/polarssl.git
				synced 2025-11-04 04:32:24 -05:00 
			
		
		
		
	Fix a whitespace issue
Co-authored-by: Janos Follath <janos.follath@arm.com>
This commit is contained in:
		
							parent
							
								
									390fb4ff34
								
							
						
					
					
						commit
						e747843903
					
				@ -1076,10 +1076,10 @@ int mbedtls_ssl_encrypt_buf( mbedtls_ssl_context *ssl,
 | 
			
		||||
 * Use only bit operations to avoid branches that could be used by some
 | 
			
		||||
 * compilers on some platforms to translate comparison operators.
 | 
			
		||||
 */
 | 
			
		||||
static void mbedtls_ssl_cf_memcpy_if_eq(unsigned char *dst,
 | 
			
		||||
                                        const unsigned char *src,
 | 
			
		||||
                                        size_t len,
 | 
			
		||||
                                        size_t c1, size_t c2 )
 | 
			
		||||
static void mbedtls_ssl_cf_memcpy_if_eq( unsigned char *dst,
 | 
			
		||||
                                         const unsigned char *src,
 | 
			
		||||
                                         size_t len,
 | 
			
		||||
                                         size_t c1, size_t c2 )
 | 
			
		||||
{
 | 
			
		||||
    /* diff = 0 if c1 == c2, non-zero otherwise */
 | 
			
		||||
    const size_t diff = c1 ^ c2;
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user