* grub-core/commands/acpihalt.c (skip_ext_op): Skip index field op.

* include/grub/acpi.h (GRUB_ACPI_EXTOPCODE_INDEX_FIELD_OP): New
	enum value.
This commit is contained in:
Vladimir 'phcoder' Serbinenko 2010-10-16 20:01:30 +02:00
parent 6c8d300275
commit e19b016b30
3 changed files with 9 additions and 1 deletions

View file

@ -142,6 +142,7 @@ skip_ext_op (const grub_uint8_t *ptr, const grub_uint8_t *end)
return 0;
break;
case GRUB_ACPI_EXTOPCODE_FIELD_OP:
case GRUB_ACPI_EXTOPCODE_INDEX_FIELD_OP:
ptr++;
ptr += decode_length (ptr, 0);
break;