Merge branch 'bugzilla-16422' into release

This commit is contained in:
Len Brown 2010-08-14 23:57:32 -04:00
commit e8eb622809

View File

@ -100,7 +100,8 @@ do_acpi_find_child(acpi_handle handle, u32 lvl, void *context, void **rv)
status = acpi_get_object_info(handle, &info);
if (ACPI_SUCCESS(status)) {
if (info->address == find->address)
if ((info->address == find->address)
&& (info->valid & ACPI_VALID_ADR))
find->handle = handle;
kfree(info);
}