mirror of
https://github.com/acpica/acpica/
synced 2025-01-16 06:19:19 +03:00
0 should be NULL
date 2004.11.02.23.33.00; author rmoore1; state Exp;
This commit is contained in:
parent
0f16b79eb9
commit
1748e8eeda
@ -1,7 +1,7 @@
|
||||
/******************************************************************************
|
||||
*
|
||||
* Module Name: nsload - namespace loading/expanding/contracting procedures
|
||||
* $Revision: 1.68 $
|
||||
* $Revision: 1.69 $
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
@ -444,7 +444,7 @@ AcpiNsDeleteSubtree (
|
||||
|
||||
|
||||
ParentHandle = StartHandle;
|
||||
ChildHandle = 0;
|
||||
ChildHandle = NULL;
|
||||
Level = 1;
|
||||
|
||||
/*
|
||||
@ -467,7 +467,7 @@ AcpiNsDeleteSubtree (
|
||||
/* Check if this object has any children */
|
||||
|
||||
if (ACPI_SUCCESS (AcpiGetNextObject (ACPI_TYPE_ANY, ChildHandle,
|
||||
0, &Dummy)))
|
||||
NULL, &Dummy)))
|
||||
{
|
||||
/*
|
||||
* There is at least one child of this object,
|
||||
@ -475,7 +475,7 @@ AcpiNsDeleteSubtree (
|
||||
*/
|
||||
Level++;
|
||||
ParentHandle = ChildHandle;
|
||||
ChildHandle = 0;
|
||||
ChildHandle = NULL;
|
||||
}
|
||||
}
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user