ACPICA: Fix for error path memory leak

This commit is contained in:
rmoore1 2006-09-12 16:43:42 +00:00
parent 0c9ed4f423
commit 77645185eb

View File

@ -1,7 +1,7 @@
/******************************************************************************
*
* Module Name: exconfig - Namespace reconfiguration (Load/Unload opcodes)
* $Revision: 1.100 $
* $Revision: 1.101 $
*
*****************************************************************************/
@ -518,7 +518,7 @@ AcpiExLoadOp (
Status = AcpiTbAddTable (TablePtr, &TableIndex);
if (ACPI_FAILURE (Status))
{
return_ACPI_STATUS (Status);
goto Cleanup;
}
Status = AcpiExAddTable (TableIndex, AcpiGbl_RootNode, &DdbHandle);