mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 16:43:04 +00:00
[UDFS] Fix crash on boot in release builds with UDFS removable media inserted (#4061) CORE-17598
Changes to specific files and their effects are as follows: create.cpp - Allows booting past second stage with UDFS media inserted without BSOD close.cpp - Allows shutdown without hang dircntrl.cpp - Allows New Hardware Wizard not to hang on initial third phase install
This commit is contained in:
parent
cd48bc7af8
commit
a91f5e8e4d
3 changed files with 19 additions and 19 deletions
|
@ -921,18 +921,18 @@ UDFCloseAllXXXDelayedInDir(
|
|||
IN BOOLEAN System
|
||||
)
|
||||
{
|
||||
PUDF_FILE_INFO* PassedList = NULL;
|
||||
ULONG PassedListSize = 0;
|
||||
PUDF_FILE_INFO* FoundList = NULL;
|
||||
ULONG FoundListSize = 0;
|
||||
NTSTATUS RC;
|
||||
ULONG i;
|
||||
BOOLEAN ResAcq = FALSE;
|
||||
BOOLEAN AcquiredVcb = FALSE;
|
||||
UDFNTRequiredFCB* NtReqFcb;
|
||||
PUDF_FILE_INFO CurFileInfo;
|
||||
PFE_LIST_ENTRY CurListPtr;
|
||||
PFE_LIST_ENTRY* ListPtrArray = NULL;
|
||||
PUDF_FILE_INFO* PassedList = NULL;
|
||||
ULONG PassedListSize = 0;
|
||||
PUDF_FILE_INFO* FoundList = NULL;
|
||||
ULONG FoundListSize = 0;
|
||||
NTSTATUS RC;
|
||||
ULONG i;
|
||||
_SEH2_VOLATILE BOOLEAN ResAcq = FALSE;
|
||||
_SEH2_VOLATILE BOOLEAN AcquiredVcb = FALSE;
|
||||
UDFNTRequiredFCB* NtReqFcb;
|
||||
PUDF_FILE_INFO CurFileInfo;
|
||||
PFE_LIST_ENTRY CurListPtr;
|
||||
PFE_LIST_ENTRY* ListPtrArray = NULL;
|
||||
|
||||
_SEH2_TRY {
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue