2010-03-04 Vladimir Serbinenko <phcoder@gmail.com>

* normal/autofs.c (autoload_fs_module): Handle errors.
This commit is contained in:
Vladimir 'phcoder' Serbinenko 2010-03-04 21:30:58 +01:00
parent b54d93ac1b
commit 41168ea49c
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2010-03-04 Vladimir Serbinenko <phcoder@gmail.com>
* normal/autofs.c (autoload_fs_module): Handle errors.
2010-03-04 Vladimir Serbinenko <phcoder@gmail.com> 2010-03-04 Vladimir Serbinenko <phcoder@gmail.com>
Disable linux.mod on qemu-mips since it's not functional and leads Disable linux.mod on qemu-mips since it's not functional and leads

View file

@ -38,6 +38,9 @@ autoload_fs_module (void)
if (! grub_dl_get (p->name) && grub_dl_load (p->name)) if (! grub_dl_get (p->name) && grub_dl_load (p->name))
return 1; return 1;
if (grub_errno)
grub_print_error ();
fs_module_list = p->next; fs_module_list = p->next;
grub_free (p->name); grub_free (p->name);
grub_free (p); grub_free (p);