ACPI_ALLOCATE_LOCAL_BUFFER now allocates via the local tracking

interface (allows the allocation to be used in internal objects as well as
tracks the allocation).


date	2002.02.08.20.11.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 18:23:10 +00:00
parent 707c032597
commit 69b3596c48

View File

@ -1,7 +1,7 @@
/******************************************************************************
*
* Module Name: nsdump - table dumping routines for debug
* $Revision: 1.124 $
* $Revision: 1.125 $
*
*****************************************************************************/
@ -217,7 +217,7 @@ AcpiNsDumpPathname (
if (ACPI_SUCCESS (Status))
{
AcpiOsPrintf ("%s %s (Node %p)\n", Msg, Buffer.Pointer, Handle);
AcpiOsFree (Buffer.Pointer);
ACPI_MEM_FREE (Buffer.Pointer);
}
return_ACPI_STATUS (Status);