mirror of
https://github.com/veracrypt/VeraCrypt
synced 2024-11-24 12:03:28 +01:00
Windows: when listing connected devices, consider that a partition exists if CreateFile returns ERROR_ACCESS_DENIED
This commit is contained in:
parent
ac37fb0003
commit
9833a753dd
@ -12106,10 +12106,11 @@ void UpdateMountableHostDeviceList ()
|
||||
OPEN_EXISTING,
|
||||
0,
|
||||
NULL );
|
||||
if (handle != INVALID_HANDLE_VALUE)
|
||||
if ((handle != INVALID_HANDLE_VALUE) || (GetLastError () == ERROR_ACCESS_DENIED))
|
||||
{
|
||||
AddDeviceToList (mountableDevices, It->SystemNumber, layout->PartitionEntry[i].PartitionNumber);
|
||||
CloseHandle (handle);
|
||||
if (handle != INVALID_HANDLE_VALUE)
|
||||
CloseHandle (handle);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user