mirror of
https://github.com/veracrypt/VeraCrypt.git
synced 2025-11-11 11:08:02 -06:00
Windows: remove ending backslash from installation path written to SetupConfig.ini
This commit is contained in:
@@ -2707,7 +2707,14 @@ namespace VeraCrypt
|
|||||||
wchar_t szSetupconfigLocation [TC_MAX_PATH + 20];
|
wchar_t szSetupconfigLocation [TC_MAX_PATH + 20];
|
||||||
|
|
||||||
if (bForInstall)
|
if (bForInstall)
|
||||||
|
{
|
||||||
GetInstallationPath (NULL, szInstallPath, ARRAYSIZE (szInstallPath), NULL);
|
GetInstallationPath (NULL, szInstallPath, ARRAYSIZE (szInstallPath), NULL);
|
||||||
|
// remove ending backslash
|
||||||
|
if (szInstallPath [wcslen (szInstallPath) - 1] == L'\\')
|
||||||
|
{
|
||||||
|
szInstallPath [wcslen (szInstallPath) - 1] = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
if (GetSetupconfigLocation (szSetupconfigLocation, ARRAYSIZE (szSetupconfigLocation)))
|
if (GetSetupconfigLocation (szSetupconfigLocation, ARRAYSIZE (szSetupconfigLocation)))
|
||||||
{
|
{
|
||||||
::CreateDirectoryW (szSetupconfigLocation, NULL);
|
::CreateDirectoryW (szSetupconfigLocation, NULL);
|
||||||
|
|||||||
Reference in New Issue
Block a user