Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5a1a57ef authored by Bob Moore's avatar Bob Moore Committed by Andi Kleen
Browse files

ACPICA: 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.

Signed-off-by: default avatarBob Moore <robert.moore@intel.com>
Signed-off-by: default avatarLin Ming <ming.m.lin@intel.com>
Signed-off-by: default avatarLen Brown <len.brown@intel.com>
Signed-off-by: default avatarAndi Kleen <ak@linux.intel.com>
parent 75e5b5fb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -776,7 +776,7 @@ acpi_ex_dump_operands(union acpi_operand_object **operands,
		      const char *note,
		      const char *module_name, u32 line_number)
{
	u32 i;
	s32 i;

	ACPI_FUNCTION_NAME(ex_dump_operands);