Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Synchronous Exception on Windows Developer Kit 2023
* Per pbatard/uefi-ntfs#37 the UEFI driver crashed during load on some ARM64 based systems. * This appears to be due to Windows Dev Kit UEFI firmware instantiating the file system protocols before FSInstall() has returned, with the consequence of this being that InsertTailList() in NtfsMountVolume() was being called before InitializeListHead() had been called, leading to a null-pointer dereference. * Fix this by making sure that InitializeListHead() is called before we instantiate the protocols.
- Loading branch information