projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
75e5b5f
)
ACPICA: Fix for invalid large array index on 64-bit systems
author
Bob Moore
<
[email protected]
>
Tue, 10 Jun 2008 06:21:05 +0000
(14:21 +0800)
committer
Andi Kleen
<
[email protected]
>
Wed, 16 Jul 2008 21:27:04 +0000
(23:27 +0200)
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: Bob Moore <
[email protected]
>
Signed-off-by: Lin Ming <
[email protected]
>
Signed-off-by: Len Brown <
[email protected]
>
Signed-off-by: Andi Kleen <
[email protected]
>
drivers/acpi/executer/exdump.c
patch
|
blob
|
history
diff --git
a/drivers/acpi/executer/exdump.c
b/drivers/acpi/executer/exdump.c
index c94638dc42e521d8596bdf7db5d7cde5807ab6df..f337c3f73e0c1afc15fb513780f4a3af95fa2813 100644
(file)
--- a/
drivers/acpi/executer/exdump.c
+++ b/
drivers/acpi/executer/exdump.c
@@
-776,7
+776,7
@@
acpi_ex_dump_operands(union acpi_operand_object **operands,
const char *note,
const char *module_name, u32 line_number)
{
-
u
32 i;
+
s
32 i;
ACPI_FUNCTION_NAME(ex_dump_operands);