diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2017-06-29 18:42:13 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2017-06-29 18:42:13 +0000 |
commit | 744d47ba98ced2e2a7d3aff2f894136544386e34 (patch) | |
tree | 917f6a025e019c7b80e50a45fa783593b4e3c19e /source/components/tables/tbxfload.c | |
parent | c457a42be4fca72c51fdca569271b62213d01a37 (diff) |
Notes
Diffstat (limited to 'source/components/tables/tbxfload.c')
-rw-r--r-- | source/components/tables/tbxfload.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/components/tables/tbxfload.c b/source/components/tables/tbxfload.c index 6b79793488f27..57720067a2ad3 100644 --- a/source/components/tables/tbxfload.c +++ b/source/components/tables/tbxfload.c @@ -336,11 +336,11 @@ AcpiTbLoadNamespace ( { Table = &AcpiGbl_RootTableList.Tables[i]; - if (!AcpiGbl_RootTableList.Tables[i].Address || + if (!Table->Address || (!ACPI_COMPARE_NAME (Table->Signature.Ascii, ACPI_SIG_SSDT) && !ACPI_COMPARE_NAME (Table->Signature.Ascii, ACPI_SIG_PSDT) && !ACPI_COMPARE_NAME (Table->Signature.Ascii, ACPI_SIG_OSDT)) || - ACPI_FAILURE (AcpiTbValidateTable (Table))) + ACPI_FAILURE (AcpiTbValidateTable (Table))) { continue; } |