* grub-core/commands/efi/lssal.c: Fix terminating condition.
This commit is contained in:
parent
316dda716c
commit
3e3dff249f
2 changed files with 10 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
2013-12-11 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* grub-core/commands/efi/lssal.c: Fix terminating condition.
|
||||
|
||||
2013-12-11 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
Introduce grub_efi_packed_guid and use it where alignment is not
|
||||
|
|
|
@ -32,7 +32,7 @@ disp_sal (void *table)
|
|||
{
|
||||
struct grub_efi_sal_system_table *t = table;
|
||||
void *desc;
|
||||
grub_uint32_t len, l;
|
||||
grub_uint32_t len, l, i;
|
||||
|
||||
grub_printf ("SAL rev: %02x, signature: %x, len:%x\n",
|
||||
t->sal_rev, t->signature, t->total_table_len);
|
||||
|
@ -44,7 +44,9 @@ disp_sal (void *table)
|
|||
|
||||
desc = t->entries;
|
||||
len = t->total_table_len - sizeof (struct grub_efi_sal_system_table);
|
||||
while (len > 0)
|
||||
if (t->total_table_len <= sizeof (struct grub_efi_sal_system_table))
|
||||
return;
|
||||
for (i = 0; i < t->entry_count; i++)
|
||||
{
|
||||
switch (*(grub_uint8_t *) desc)
|
||||
{
|
||||
|
@ -123,6 +125,8 @@ disp_sal (void *table)
|
|||
return;
|
||||
}
|
||||
desc = (grub_uint8_t *)desc + l;
|
||||
if (len <= l)
|
||||
return;
|
||||
len -= l;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue