* util/grub-setup.c (setup) [!__linux__]: Add missing file declaration
and grub_file_close call.
This commit is contained in:
parent
99ce1597a4
commit
46c34eb096
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* util/grub-setup.c (setup) [!__linux__]: Add missing file declaration
|
||||||
|
and grub_file_close call.
|
||||||
|
|
||||||
2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
|
2012-02-29 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
Add LZSS Mach-O support (needed for new xnu kernelcache).
|
Add LZSS Mach-O support (needed for new xnu kernelcache).
|
||||||
|
|
|
@ -799,6 +799,7 @@ unable_to_embed:
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
{
|
{
|
||||||
|
grub_file_t file;
|
||||||
/* Now read the core image to determine where the sectors are. */
|
/* Now read the core image to determine where the sectors are. */
|
||||||
grub_file_filter_disable_compression ();
|
grub_file_filter_disable_compression ();
|
||||||
file = grub_file_open (core_path_dev);
|
file = grub_file_open (core_path_dev);
|
||||||
|
@ -815,6 +816,7 @@ unable_to_embed:
|
||||||
if (grub_file_read (file, tmp_img, core_size - GRUB_DISK_SECTOR_SIZE)
|
if (grub_file_read (file, tmp_img, core_size - GRUB_DISK_SECTOR_SIZE)
|
||||||
!= (grub_ssize_t) core_size - GRUB_DISK_SECTOR_SIZE)
|
!= (grub_ssize_t) core_size - GRUB_DISK_SECTOR_SIZE)
|
||||||
grub_util_error ("%s", _("failed to read the rest sectors of the core image"));
|
grub_util_error ("%s", _("failed to read the rest sectors of the core image"));
|
||||||
|
grub_file_close (file);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue