1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-11 11:08:02 -06:00

Linux: Only add disk to mountable devices if it doesn't have a partition. This fixes a strange issue where the function "open" would fail with error ENOENT (No such file or directory) on a partition (e.g. /dev/sdb1) if it was called previously on the main disk (e.g. /dev/sdb).

This commit is contained in:
Mounir IDRASSI
2017-11-29 17:26:23 +01:00
parent ee6da31fb6
commit 668d5e3cad

View File

@@ -596,10 +596,13 @@ namespace VeraCrypt
HostDeviceList devices;
foreach (shared_ptr <HostDevice> device, Core->GetHostDevices (true))
{
devices.push_back (device);
foreach (shared_ptr <HostDevice> partition, device->Partitions)
devices.push_back (partition);
if (device->Partitions.empty())
devices.push_back (device);
else
{
foreach (shared_ptr <HostDevice> partition, device->Partitions)
devices.push_back (partition);
}
}
set <wstring> mountedVolumes;