mirror of
https://github.com/acpica/acpica/
synced 2025-03-04 21:31:41 +03:00
Fix to NOT perform implicit conversion when storing to an ArgX
date 2004.04.01.17.08.00; author rmoore1; state Exp;
This commit is contained in:
parent
dc4c4a0c66
commit
5e99f975f0
@ -1,7 +1,7 @@
|
||||
/*******************************************************************************
|
||||
*
|
||||
* Module Name: dsmthdat - control method arguments and local variables
|
||||
* $Revision: 1.77 $
|
||||
* $Revision: 1.78 $
|
||||
*
|
||||
******************************************************************************/
|
||||
|
||||
@ -760,11 +760,13 @@ AcpiDsStoreObjectToLocal (
|
||||
NewObjDesc, CurrentObjDesc));
|
||||
|
||||
/*
|
||||
* Store this object to the Node
|
||||
* (perform the indirect store)
|
||||
* Store this object to the Node (perform the indirect store)
|
||||
* NOTE: No implicit conversion is performed, as per the ACPI
|
||||
* specification rules on storing to Locals/Args.
|
||||
*/
|
||||
Status = AcpiExStoreObjectToNode (NewObjDesc,
|
||||
CurrentObjDesc->Reference.Object, WalkState);
|
||||
CurrentObjDesc->Reference.Object, WalkState,
|
||||
ACPI_NO_IMPLICIT_CONVERSION);
|
||||
|
||||
/* Remove local reference if we copied the object above */
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user