From 629b082a69745f90d249b4a186a82542cf794bef Mon Sep 17 00:00:00 2001 From: Dmitry Gorbachev Date: Mon, 18 Jul 2011 20:27:42 +0000 Subject: [PATCH] [NTOSKRNL] Do not assign drive letters to unrecognized partitions. Fixes bug #2564. svn path=/trunk/; revision=52731 --- reactos/ntoskrnl/fstub/disksup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/ntoskrnl/fstub/disksup.c b/reactos/ntoskrnl/fstub/disksup.c index 05cc18f79bc..72643f87e4e 100644 --- a/reactos/ntoskrnl/fstub/disksup.c +++ b/reactos/ntoskrnl/fstub/disksup.c @@ -398,7 +398,7 @@ xHalQueryDriveLayout(IN PUNICODE_STRING DeviceName, /* Read the partition table */ Status = IoReadPartitionTable(DeviceObject, DiskGeometry.BytesPerSector, - FALSE, + TRUE, LayoutInfo); }