mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-03 21:48:15 +00:00 
			
		
		
		
	efi_loader: check parameter new_handle of efi_file_open()
We should not check parameter file twice. We should check parameter new_handle. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Signed-off-by: Alexander Graf <agraf@suse.de>
This commit is contained in:
		
							parent
							
								
									6e6e4b2f73
								
							
						
					
					
						commit
						d3dce35aab
					
				@ -218,7 +218,7 @@ static efi_status_t EFIAPI efi_file_open(struct efi_file_handle *file,
 | 
			
		||||
		  open_mode, attributes);
 | 
			
		||||
 | 
			
		||||
	/* Check parameters */
 | 
			
		||||
	if (!file || !file || !file_name) {
 | 
			
		||||
	if (!file || !new_handle || !file_name) {
 | 
			
		||||
		ret = EFI_INVALID_PARAMETER;
 | 
			
		||||
		goto out;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user