summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLin Ming2008-11-12 07:56:59 +0100
committerLen Brown2008-12-30 04:38:36 +0100
commit84d4db7c528e23f8c9ae0be12960549347003eeb (patch)
tree8ad549c186b40b85a59565974d6c2cac0cd78a31
parentACPICA: Update FACS waking vector interfaces (diff)
downloadkernel-qcow2-linux-84d4db7c528e23f8c9ae0be12960549347003eeb.tar.gz
kernel-qcow2-linux-84d4db7c528e23f8c9ae0be12960549347003eeb.tar.xz
kernel-qcow2-linux-84d4db7c528e23f8c9ae0be12960549347003eeb.zip
ACPICA: Fix possible memory leak on error in parser
Fixes a possible memory leak if an allocation failure happens in the parse loop. Must terminate an executing control method. Lin Ming, Bob Moore. ACPICA BZ 489. http://www.acpica.org/bugzilla/show_bug.cgi?id=489 Signed-off-by: Lin Ming <ming.m.lin@intel.com> Signed-off-by: Bob Moore <robert.moore@intel.com> Signed-off-by: Len Brown <len.brown@intel.com>
-rw-r--r--drivers/acpi/parser/psparse.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/acpi/parser/psparse.c b/drivers/acpi/parser/psparse.c
index 68e932f215ea..dfd3d9028018 100644
--- a/drivers/acpi/parser/psparse.c
+++ b/drivers/acpi/parser/psparse.c
@@ -451,6 +451,14 @@ acpi_status acpi_ps_parse_aml(struct acpi_walk_state *walk_state)
thread = acpi_ut_create_thread_state();
if (!thread) {
+ if (walk_state->method_desc) {
+
+ /* Executing a control method - additional cleanup */
+
+ acpi_ds_terminate_control_method(
+ walk_state->method_desc, walk_state);
+ }
+
acpi_ds_delete_walk_state(walk_state);
return_ACPI_STATUS(AE_NO_MEMORY);
}