Deleted Added
full compact
dsmthdat.c (197104) dsmthdat.c (199337)
1/*******************************************************************************
2 *
3 * Module Name: dsmthdat - control method arguments and local variables
4 *
5 ******************************************************************************/
6
7/******************************************************************************
8 *

--- 510 unchanged lines hidden (view full) ---

519 * was referenced by the method (via the ASL)
520 * before it was initialized. Either case is an error.
521 */
522
523 /* If slack enabled, init the LocalX/ArgX to an Integer of value zero */
524
525 if (AcpiGbl_EnableInterpreterSlack)
526 {
1/*******************************************************************************
2 *
3 * Module Name: dsmthdat - control method arguments and local variables
4 *
5 ******************************************************************************/
6
7/******************************************************************************
8 *

--- 510 unchanged lines hidden (view full) ---

519 * was referenced by the method (via the ASL)
520 * before it was initialized. Either case is an error.
521 */
522
523 /* If slack enabled, init the LocalX/ArgX to an Integer of value zero */
524
525 if (AcpiGbl_EnableInterpreterSlack)
526 {
527 Object = AcpiUtCreateInternalObject (ACPI_TYPE_INTEGER);
527 Object = AcpiUtCreateIntegerObject ((UINT64) 0);
528 if (!Object)
529 {
530 return_ACPI_STATUS (AE_NO_MEMORY);
531 }
532
528 if (!Object)
529 {
530 return_ACPI_STATUS (AE_NO_MEMORY);
531 }
532
533 Object->Integer.Value = 0;
534 Node->Object = Object;
535 }
536
537 /* Otherwise, return the error */
538
539 else switch (Type)
540 {
541 case ACPI_REFCLASS_ARG:

--- 306 unchanged lines hidden ---
533 Node->Object = Object;
534 }
535
536 /* Otherwise, return the error */
537
538 else switch (Type)
539 {
540 case ACPI_REFCLASS_ARG:

--- 306 unchanged lines hidden ---