From 9f69e8cfabf657aa6ad7876f3abd421d3ec5b883 Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Thu, 1 Jan 2026 22:59:15 +0100 Subject: [PATCH] [DISKPART] Initialize unrecognized volumes as partitions --- base/system/diskpart/partlist.c | 1 + 1 file changed, 1 insertion(+) diff --git a/base/system/diskpart/partlist.c b/base/system/diskpart/partlist.c index 5aba189de1f..2f82e817a30 100644 --- a/base/system/diskpart/partlist.c +++ b/base/system/diskpart/partlist.c @@ -1935,6 +1935,7 @@ AddVolumeToList( VolumeEntry->SerialNumber = 0; VolumeEntry->SectorsPerAllocationUnit = 1; VolumeEntry->BytesPerSector = 512; + VolumeEntry->VolumeType = VOLUME_TYPE_PARTITION; } }