diff options
Diffstat (limited to 'source/common/dmtables.c')
| -rw-r--r-- | source/common/dmtables.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/source/common/dmtables.c b/source/common/dmtables.c index f95795096156..a2dbea62a3b8 100644 --- a/source/common/dmtables.c +++ b/source/common/dmtables.c @@ -443,8 +443,8 @@ AdGetLocalTables (      /* Get the DSDT via table override */      ACPI_MOVE_32_TO_32 (TableHeader.Signature, ACPI_SIG_DSDT); -    AcpiOsTableOverride (&TableHeader, &NewTable); -    if (!NewTable) +    Status = AcpiOsTableOverride (&TableHeader, &NewTable); +    if (ACPI_FAILURE (Status) || !NewTable)      {          fprintf (stderr, "Could not obtain DSDT\n");          return (AE_NO_ACPI_TABLES); | 
