mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
[ACPI]
- Increase the size of the ID buffers to fit certain non-standard IDs reported by Hyper-V on Windows 8. These should be allocated from pool, but this code really sucks and should be replaced anyway. - Fixes buffer overflow causing a bug check during boot on Hyper-V svn path=/trunk/; revision=57067
This commit is contained in:
parent
307df8d456
commit
59de552e2a
1 changed files with 3 additions and 3 deletions
|
@ -164,10 +164,10 @@ struct acpi_device_flags {
|
|||
|
||||
/* Plug and Play */
|
||||
|
||||
typedef char acpi_bus_id[8];
|
||||
typedef char acpi_bus_id[20];
|
||||
typedef unsigned long acpi_bus_address;
|
||||
typedef char acpi_hardware_id[9];
|
||||
typedef char acpi_unique_id[9];
|
||||
typedef char acpi_hardware_id[20];
|
||||
typedef char acpi_unique_id[20];
|
||||
typedef char acpi_device_name[40];
|
||||
typedef char acpi_device_class[20];
|
||||
|
||||
|
|
Loading…
Reference in a new issue