* grub-core/kern/fs.c (grub_fs_probe): Handle GRUB_ERR_OUT_OF_RANGE as
a bad FS.
This commit is contained in:
parent
aa78f5c4e6
commit
4e46148696
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2012-05-21 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-18 Vladimir Serbinenko <phcoder@gmail.com>
|
2012-05-18 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* grub-core/fs/iso9660.c (grub_iso9660_iterate_dir): Mark plain
|
* grub-core/fs/iso9660.c (grub_iso9660_iterate_dir): Mark plain
|
||||||
|
|
|
@ -100,7 +100,8 @@ grub_fs_probe (grub_device_t device)
|
||||||
return p;
|
return p;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (grub_errno != GRUB_ERR_BAD_FS)
|
if (grub_errno != GRUB_ERR_BAD_FS
|
||||||
|
&& grub_errno != GRUB_ERR_OUT_OF_RANGE)
|
||||||
{
|
{
|
||||||
count--;
|
count--;
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Add table
Reference in a new issue