mirror of
https://github.com/acpica/acpica/
synced 2025-01-18 15:39:18 +03:00
Fix for bad status, not executing a method
date 2004.11.05.22.33.00; author rmoore1; state Exp;
This commit is contained in:
parent
bb35a35220
commit
6d7926de2c
@ -1,7 +1,7 @@
|
||||
/******************************************************************************
|
||||
*
|
||||
* Module Name: psparse - Parser top level AML parse routines
|
||||
* $Revision: 1.145 $
|
||||
* $Revision: 1.146 $
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
@ -1298,7 +1298,7 @@ AcpiPsParseAml (
|
||||
{
|
||||
Status = AE_OK;
|
||||
}
|
||||
else if (Status != AE_OK)
|
||||
else if ((Status != AE_OK) && (WalkState->MethodDesc))
|
||||
{
|
||||
ACPI_REPORT_METHOD_ERROR ("Method execution failed",
|
||||
WalkState->MethodNode, NULL, Status);
|
||||
|
Loading…
Reference in New Issue
Block a user