diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-07-11 13:17:31 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-11-08 23:21:02 +0100 |
commit | 516fda09a7be48be29a0722aab490b9286e41e73 (patch) | |
tree | ab4b22b1a7dc116aeb2b60f23f3b3d6ff6d05b46 /src/Setup | |
parent | 626a3aedd789725b5fa92f544a7575e1fccff555 (diff) | |
download | VeraCrypt-516fda09a7be48be29a0722aab490b9286e41e73.tar.gz VeraCrypt-516fda09a7be48be29a0722aab490b9286e41e73.zip |
Remove test inherited from TrueCrypt because it's always true since we inherited from version 0x71a
Diffstat (limited to 'src/Setup')
-rw-r--r-- | src/Setup/Setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Setup/Setup.c b/src/Setup/Setup.c index 9603eec2..e41642f8 100644 --- a/src/Setup/Setup.c +++ b/src/Setup/Setup.c @@ -958,7 +958,7 @@ BOOL DoDriverUnload (HWND hwndDlg) }
catch (...) { }
- if (bUninstallInProgress && driverVersion >= 0x500 && !bootEnc.GetStatus().DriveMounted)
+ if (bUninstallInProgress && !bootEnc.GetStatus().DriveMounted)
{
try { bootEnc.RegisterFilterDriver (false, BootEncryption::DriveFilter); } catch (...) { }
try { bootEnc.RegisterFilterDriver (false, BootEncryption::VolumeFilter); } catch (...) { }
|