Ignore fields zero1 and zero3
This commit is contained in:
parent
239ab5f048
commit
3c50773923
1 changed files with 4 additions and 4 deletions
|
@ -48,10 +48,10 @@ struct grub_plan9_header
|
||||||
grub_uint32_t text_size;
|
grub_uint32_t text_size;
|
||||||
grub_uint32_t data_size;
|
grub_uint32_t data_size;
|
||||||
grub_uint32_t bss_size;
|
grub_uint32_t bss_size;
|
||||||
grub_uint32_t zero1;
|
grub_uint32_t sectiona;
|
||||||
grub_uint32_t entry_addr;
|
grub_uint32_t entry_addr;
|
||||||
grub_uint32_t zero2;
|
grub_uint32_t zero;
|
||||||
grub_uint32_t zero3;
|
grub_uint32_t sectionb;
|
||||||
};
|
};
|
||||||
|
|
||||||
static grub_err_t
|
static grub_err_t
|
||||||
|
@ -116,7 +116,7 @@ grub_cmd_plan9 (grub_command_t cmd __attribute__ ((unused)),
|
||||||
goto fail;
|
goto fail;
|
||||||
|
|
||||||
if (grub_be_to_cpu32 (hdr.magic) != GRUB_PLAN9_MAGIC
|
if (grub_be_to_cpu32 (hdr.magic) != GRUB_PLAN9_MAGIC
|
||||||
|| hdr.zero1 || hdr.zero2 || hdr.zero3)
|
|| hdr.zero)
|
||||||
{
|
{
|
||||||
grub_error (GRUB_ERR_BAD_OS, "unsupported Plan9");
|
grub_error (GRUB_ERR_BAD_OS, "unsupported Plan9");
|
||||||
goto fail;
|
goto fail;
|
||||||
|
|
Loading…
Reference in a new issue