Could not copy to a newly allocated buffer, fixed

date	2001.02.05.23.30.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 19:05:15 +00:00
parent 11f879153a
commit f2e2bcae8d

View File

@ -1,7 +1,7 @@
/******************************************************************************
*
* Module Name: cmcopy - Internal to external object translation utilities
* $Revision: 1.65 $
* $Revision: 1.66 $
*
*****************************************************************************/
@ -741,7 +741,7 @@ AcpiCmCopyIelementToIelement (
}
Status = AcpiAmlStoreObjectToObject (SourceObject, TargetObject,
State->Pkg.WalkState);
(ACPI_WALK_STATE *) Context);
if (ACPI_FAILURE (Status))
{
return (Status);
@ -833,7 +833,7 @@ AcpiCmCopyIpackageToIpackage (
Status = AcpiCmWalkPackageTree (SourceObj, DestObj,
AcpiCmCopyIelementToIelement, NULL);
AcpiCmCopyIelementToIelement, WalkState);
return_ACPI_STATUS (Status);
}