Skip to content

Commit

Permalink
ACPICA: Fix possible memory leak on error in parser
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Lin Ming authored and Len Brown committed Dec 30, 2008
1 parent d85988f commit 84d4db7
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions drivers/acpi/parser/psparse.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 84d4db7

Please sign in to comment.