efi_loader: Delete() return EFI_WARN_DELETE_FAILURE
If EFI_FILE_PROTOCOL.Delete() fails, always close the handle and return EFI_WARN_DELETE_FAILURE. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
@@ -307,16 +307,10 @@ static efi_status_t EFIAPI efi_file_delete(struct efi_file_handle *file)
|
|||||||
|
|
||||||
EFI_ENTRY("%p", file);
|
EFI_ENTRY("%p", file);
|
||||||
|
|
||||||
if (set_blk_dev(fh)) {
|
if (set_blk_dev(fh) || fs_unlink(fh->path))
|
||||||
ret = EFI_DEVICE_ERROR;
|
ret = EFI_WARN_DELETE_FAILURE;
|
||||||
goto error;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (fs_unlink(fh->path))
|
|
||||||
ret = EFI_DEVICE_ERROR;
|
|
||||||
file_close(fh);
|
file_close(fh);
|
||||||
|
|
||||||
error:
|
|
||||||
return EFI_EXIT(ret);
|
return EFI_EXIT(ret);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user