* grub-core/disk/efi/efidisk.c: Really limit transfer chunk size.
This commit is contained in:
parent
740201f3ab
commit
284df0e263
2 changed files with 5 additions and 1 deletions
|
@ -549,7 +549,7 @@ grub_efidisk_readwrite (struct grub_disk *disk, grub_disk_addr_t sector,
|
|||
status = efi_call_5 ((wr ? bio->write_blocks : bio->read_blocks), bio,
|
||||
bio->media->media_id,
|
||||
(grub_efi_uint64_t) sector,
|
||||
(grub_efi_uintn_t) size << disk->log_sector_size,
|
||||
(grub_efi_uintn_t) len << disk->log_sector_size,
|
||||
buf);
|
||||
size -= len;
|
||||
buf += len << disk->log_sector_size;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue