mirror of
				https://github.com/cuberite/polarssl.git
				synced 2025-11-03 20:22:59 -05:00 
			
		
		
		
	Fix indentation and add goto cleanup; stmt
This commit is contained in:
		
							parent
							
								
									b2b063ff35
								
							
						
					
					
						commit
						aa464ef23a
					
				@ -436,7 +436,8 @@ int mbedtls_md_hmac( const mbedtls_md_info_t *md_info,
 | 
			
		||||
        goto cleanup;
 | 
			
		||||
    if( ( ret = mbedtls_md_hmac_update( &ctx, input, ilen ) ) != 0 )
 | 
			
		||||
        goto cleanup;
 | 
			
		||||
    ret = mbedtls_md_hmac_finish( &ctx, output );
 | 
			
		||||
    if( ( ret = mbedtls_md_hmac_finish( &ctx, output ) ) != 0 )
 | 
			
		||||
        goto cleanup;
 | 
			
		||||
 | 
			
		||||
cleanup:
 | 
			
		||||
    mbedtls_md_free( &ctx );
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user