mirror of
https://github.com/reactos/reactos.git
synced 2025-05-22 10:35:54 +00:00
[PARTMGR] Volume devices do not have compatible IDs and their instance IDs are not unique
This commit is contained in:
parent
fefac1fb1d
commit
a959d6e473
1 changed files with 1 additions and 2 deletions
|
@ -301,7 +301,6 @@ PartitionHandleQueryId(
|
|||
? STATUS_SUCCESS : STATUS_INSUFFICIENT_RESOURCES;
|
||||
break;
|
||||
case BusQueryHardwareIDs:
|
||||
case BusQueryCompatibleIDs:
|
||||
{
|
||||
static WCHAR volumeID[] = L"STORAGE\\Volume\0";
|
||||
|
||||
|
@ -376,7 +375,7 @@ PartitionHandleQueryCapabilities(
|
|||
devCaps->RawDeviceOK = TRUE;
|
||||
devCaps->NoDisplayInUI = TRUE;
|
||||
devCaps->Address = PartExt->OnDiskNumber;
|
||||
devCaps->UniqueID = 1;
|
||||
devCaps->UniqueID = FALSE;
|
||||
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue