mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 12:39:35 +00:00
[SETUPLIB] FindSupportedSystemPartition(): Add missing NULL check
Addendum to commit 59acff79e
.
This commit is contained in:
parent
ae27ffcddc
commit
c752e8c0be
1 changed files with 5 additions and 0 deletions
|
@ -3346,6 +3346,11 @@ FindSupportedSystemPartition(
|
|||
* should be our system partition.
|
||||
*/
|
||||
DiskEntry = GetSystemDisk(List);
|
||||
if (!DiskEntry)
|
||||
{
|
||||
/* No system disk found, directly go check the alternative disk */
|
||||
goto UseAlternativeDisk;
|
||||
}
|
||||
|
||||
if (DiskEntry->DiskStyle == PARTITION_STYLE_GPT)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue