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

Windows: Add extra check in GetDiskDeviceDriveLetter for code clarity

This commit is contained in:
Mounir IDRASSI
2015-09-19 23:31:36 +02:00
parent e8ea23e719
commit 6b3a26bc40

View File

@@ -7346,10 +7346,12 @@ int GetDiskDeviceDriveLetter (PWSTR deviceName)
StringCchCopyW (link, MAX_PATH, L"\\DosDevices\\");
StringCchCatW (link, MAX_PATH, drive);
ResolveSymbolicLink (link, target, sizeof(target));
if (wcscmp (device, target) == 0)
if ( ResolveSymbolicLink (link, target, sizeof(target))
&& (wcscmp (device, target) == 0)
)
{
return i;
}
}
return -1;