Merge pull request #479 from SchmErik/table-load-init

Table load: exit interpreter before initializing objects
This commit is contained in:
Robert Moore 2019-07-12 12:07:41 -07:00 committed by GitHub
commit b19227e401
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -344,7 +344,9 @@ AcpiExLoadTableOp (
/* Complete the initialization/resolution of new objects */
AcpiNsInitializeObjects ();
AcpiExExitInterpreter();
AcpiNsInitializeObjects();
AcpiExEnterInterpreter();
/* Parameter Data (optional) */