VeraCrypt
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2021-08-29 14:33:52 +0200
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2021-08-30 00:26:34 +0200
commit78c2fe2562982db6045af9defb0fb4469bc43a5a (patch)
treee7ba72f168a5ba12e4227e09815e9b985746853a
parente948c5e0a35bf1c076a730b3b1cfbc7460103f65 (diff)
downloadVeraCrypt-78c2fe2562982db6045af9defb0fb4469bc43a5a.tar.gz
VeraCrypt-78c2fe2562982db6045af9defb0fb4469bc43a5a.zip
Windows Exe Setup: Add ARM64 binaries to FileInUse detection
-rw-r--r--src/Setup/Setup.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Setup/Setup.c b/src/Setup/Setup.c
index fc119a81..382617ab 100644
--- a/src/Setup/Setup.c
+++ b/src/Setup/Setup.c
@@ -2252,12 +2252,15 @@ void DoInstall (void *arg)
&& (IsFileInUse (wstring (InstallationPath) + L'\\' + _T(TC_APP_NAME) L".exe")
|| IsFileInUse (wstring (InstallationPath) + L'\\' + _T(TC_APP_NAME) L"-x86.exe")
|| IsFileInUse (wstring (InstallationPath) + L'\\' + _T(TC_APP_NAME) L"-x64.exe")
+ || IsFileInUse (wstring (InstallationPath) + L'\\' + _T(TC_APP_NAME) L"-arm64.exe")
|| IsFileInUse (wstring (InstallationPath) + L'\\' + _T(TC_APP_NAME) L" Format.exe")
|| IsFileInUse (wstring (InstallationPath) + L'\\' + _T(TC_APP_NAME) L" Format-x86.exe")
|| IsFileInUse (wstring (InstallationPath) + L'\\' + _T(TC_APP_NAME) L" Format-x64.exe")
+ || IsFileInUse (wstring (InstallationPath) + L'\\' + _T(TC_APP_NAME) L" Format-arm64.exe")
|| IsFileInUse (wstring (InstallationPath) + L'\\' + _T(TC_APP_NAME) L"Expander.exe")
|| IsFileInUse (wstring (InstallationPath) + L'\\' + _T(TC_APP_NAME) L"Expander-x86.exe")
|| IsFileInUse (wstring (InstallationPath) + L'\\' + _T(TC_APP_NAME) L"Expander-x64.exe")
+ || IsFileInUse (wstring (InstallationPath) + L'\\' + _T(TC_APP_NAME) L"Expander-arm64.exe")
|| IsFileInUse (wstring (InstallationPath) + L'\\' + _T(TC_APP_NAME) L" Setup.exe")
)
)