mirror of
https://git.proxmox.com/git/grub2
synced 2025-08-05 02:49:40 +00:00
Fix *end restoring
This commit is contained in:
parent
aa68ca1250
commit
706c46bdca
@ -164,16 +164,19 @@ FUNC_NAME (const char *key, const char *var, int no_floppy,
|
||||
dev = grub_device_open (hints[i]);
|
||||
if (!dev)
|
||||
{
|
||||
if (!*end)
|
||||
*end = ',';
|
||||
continue;
|
||||
}
|
||||
if (!dev->disk)
|
||||
{
|
||||
grub_device_close (dev);
|
||||
if (!*end)
|
||||
*end = ',';
|
||||
continue;
|
||||
}
|
||||
ret = grub_partition_iterate (dev->disk, part_hook);
|
||||
if (!*end)
|
||||
*end = ',';
|
||||
grub_device_close (dev);
|
||||
if (ret)
|
||||
|
Loading…
Reference in New Issue
Block a user