* util/grub-setup.c (setup) [!__linux__]: Add missing file declaration

and grub_file_close call.
This commit is contained in:
Vladimir 'phcoder' Serbinenko 2012-02-29 14:07:53 +01:00
parent 99ce1597a4
commit 46c34eb096
2 changed files with 7 additions and 0 deletions

View file

@ -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>
Add LZSS Mach-O support (needed for new xnu kernelcache).

View file

@ -799,6 +799,7 @@ unable_to_embed:
}
#else
{
grub_file_t file;
/* Now read the core image to determine where the sectors are. */
grub_file_filter_disable_compression ();
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)
!= (grub_ssize_t) core_size - GRUB_DISK_SECTOR_SIZE)
grub_util_error ("%s", _("failed to read the rest sectors of the core image"));
grub_file_close (file);
}
#endif