mirror of
https://git.proxmox.com/git/grub2
synced 2025-08-04 01:48:49 +00:00
* grub-core/kern/fs.c (grub_fs_probe): Handle GRUB_ERR_OUT_OF_RANGE as
a bad FS.
This commit is contained in:
parent
def3df7520
commit
bfb320c644
@ -1,3 +1,8 @@
|
||||
2012-05-12 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* grub-core/kern/fs.c (grub_fs_probe): Handle GRUB_ERR_OUT_OF_RANGE as
|
||||
a bad FS.
|
||||
|
||||
2012-05-12 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* grub-core/fs/udf.c (read_string): Bail out on size=0.
|
||||
|
@ -77,7 +77,8 @@ grub_fs_probe (grub_device_t device)
|
||||
grub_dprintf ("fs", "%s detection failed.\n", p->name);
|
||||
grub_error_pop ();
|
||||
|
||||
if (grub_errno != GRUB_ERR_BAD_FS)
|
||||
if (grub_errno != GRUB_ERR_BAD_FS
|
||||
&& grub_errno != GRUB_ERR_OUT_OF_RANGE)
|
||||
return 0;
|
||||
|
||||
grub_errno = GRUB_ERR_NONE;
|
||||
|
Loading…
Reference in New Issue
Block a user