* grub-core/kern/i386/coreboot/mmap.c (grub_linuxbios_table_iterate):
Fix end of table condition.
This commit is contained in:
parent
ff2b3cd928
commit
005a9c32df
3 changed files with 15 additions and 4 deletions
|
@ -22,8 +22,12 @@
|
|||
|
||||
struct grub_linuxbios_table_header
|
||||
{
|
||||
char signature[4];
|
||||
grub_uint32_t size;
|
||||
grub_uint8_t signature[4];
|
||||
grub_uint32_t header_size;
|
||||
grub_uint32_t header_checksum;
|
||||
grub_uint32_t table_size;
|
||||
grub_uint32_t table_checksum;
|
||||
grub_uint32_t table_entries;
|
||||
};
|
||||
typedef struct grub_linuxbios_table_header *grub_linuxbios_table_header_t;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue