mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
[USETUP]
Fix crash during installation. Patch by Wim Hueskens. CORE-11409 #resolve #comment Thanks a lot! svn path=/trunk/; revision=71797
This commit is contained in:
parent
fcba48cf23
commit
61e26d8796
1 changed files with 5 additions and 0 deletions
|
@ -2558,6 +2558,7 @@ SelectFileSystemPage(PINPUT_RECORD Ir)
|
|||
PCHAR DiskUnit;
|
||||
PCHAR PartUnit;
|
||||
CHAR PartTypeString[32];
|
||||
FORMATMACHINESTATE PreviousFormatState;
|
||||
|
||||
DPRINT("SelectFileSystemPage()\n");
|
||||
|
||||
|
@ -2592,6 +2593,7 @@ SelectFileSystemPage(PINPUT_RECORD Ir)
|
|||
return QUIT_PAGE;
|
||||
}
|
||||
|
||||
PreviousFormatState = PartitionList->FormatState;
|
||||
switch (PartitionList->FormatState)
|
||||
{
|
||||
case Start:
|
||||
|
@ -2827,6 +2829,7 @@ SelectFileSystemPage(PINPUT_RECORD Ir)
|
|||
else if ((Ir->Event.KeyEvent.uChar.AsciiChar == 0x00) &&
|
||||
(Ir->Event.KeyEvent.wVirtualKeyCode == VK_ESCAPE)) /* ESC */
|
||||
{
|
||||
PartitionList->FormatState = Start;
|
||||
return SELECT_PARTITION_PAGE;
|
||||
}
|
||||
else if ((Ir->Event.KeyEvent.uChar.AsciiChar == 0x00) &&
|
||||
|
@ -2853,6 +2856,8 @@ SelectFileSystemPage(PINPUT_RECORD Ir)
|
|||
}
|
||||
}
|
||||
|
||||
PartitionList->FormatState = PreviousFormatState;
|
||||
|
||||
return SELECT_FILE_SYSTEM_PAGE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue