mirror of
https://github.com/acpica/acpica/
synced 2025-01-22 01:12:03 +03:00
Fix for invalid large array index on 64-bit systems.
This problem was introduced in 20080514 as a result of the elimination of the ACPI_NATIVE_UINT type. Code uses a negative array index, which should be eliminated.
This commit is contained in:
parent
d6b7ac2fe2
commit
9fa368ff7b
@ -899,7 +899,7 @@ AcpiExDumpOperands (
|
||||
const char *ModuleName,
|
||||
UINT32 LineNumber)
|
||||
{
|
||||
UINT32 i;
|
||||
INT32 i;
|
||||
|
||||
|
||||
ACPI_FUNCTION_NAME (ExDumpOperands);
|
||||
|
Loading…
Reference in New Issue
Block a user