diff options
Diffstat (limited to 'source/compiler/asltree.c')
-rw-r--r-- | source/compiler/asltree.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source/compiler/asltree.c b/source/compiler/asltree.c index ca88071..c8d05e4 100644 --- a/source/compiler/asltree.c +++ b/source/compiler/asltree.c @@ -823,6 +823,7 @@ TrLinkChildren ( { AslError (ASL_WARNING, ASL_MSG_COMPILER_INTERNAL, Child, "Child node list invalid"); + va_end(ap); return (Op); } @@ -869,8 +870,8 @@ TrLinkChildren ( } PrevChild = Child; } - va_end(ap); + va_end(ap); DbgPrint (ASL_PARSE_OUTPUT, "\n\n"); return (Op); } |