diff options
author | Bob Moore <robert.moore@intel.com> | 2007-02-02 11:48:20 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2007-02-02 21:14:25 -0500 |
commit | 0fab8997f18f71b2391e72e49d8d31a395352dcc (patch) | |
tree | da4121b90e0d7671800fc5b4852a85b809f52df1 /drivers/acpi/executer/exconfig.c | |
parent | 7139284460fba90c4dfcfae76680ad36b45f5982 (diff) |
ACPICA: Fix memory leak in table load error path
Signed-off-by: Alexey Starikovskiy <alexey.y.starikovskiy@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/executer/exconfig.c')
-rw-r--r-- | drivers/acpi/executer/exconfig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/executer/exconfig.c b/drivers/acpi/executer/exconfig.c index dd43b00e18b5..20a5ab87e88f 100644 --- a/drivers/acpi/executer/exconfig.c +++ b/drivers/acpi/executer/exconfig.c | |||
@@ -413,7 +413,7 @@ acpi_ex_load_op(union acpi_operand_object *obj_desc, | |||
413 | */ | 413 | */ |
414 | status = acpi_tb_add_table(table_ptr, &table_index); | 414 | status = acpi_tb_add_table(table_ptr, &table_index); |
415 | if (ACPI_FAILURE(status)) { | 415 | if (ACPI_FAILURE(status)) { |
416 | return_ACPI_STATUS(status); | 416 | goto cleanup; |
417 | } | 417 | } |
418 | 418 | ||
419 | status = | 419 | status = |