diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-06-09 23:29:33 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-06-10 01:13:53 +0200 |
commit | b7eadfd310bc61e7a982dc8bce4eb32038a6fa09 (patch) | |
tree | 4de9e02ed3cf30e2c0af2b11ce333d356101628c /src/Format | |
parent | a7a8d57bcaaaf4e5982d2e51cd3086d34f45f780 (diff) | |
download | VeraCrypt-b7eadfd310bc61e7a982dc8bce4eb32038a6fa09.tar.gz VeraCrypt-b7eadfd310bc61e7a982dc8bce4eb32038a6fa09.zip |
Windows: solve installer issue on Windows 10 caused by failure to overwrite VeraCrypt driver file.
Diffstat (limited to 'src/Format')
-rw-r--r-- | src/Format/InPlace.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Format/InPlace.c b/src/Format/InPlace.c index 043c1cd7..24303036 100644 --- a/src/Format/InPlace.c +++ b/src/Format/InPlace.c @@ -2007,7 +2007,7 @@ BOOL SaveNonSysInPlaceEncSettings (int delta, WipeAlgorithmId newWipeAlgorithm, {
StringCbPrintfA (str, sizeof(str), "%d", (int) newWipeAlgorithm);
- SaveBufferToFile (str, GetConfigPath (TC_APPD_FILENAME_NONSYS_INPLACE_ENC_WIPE), (DWORD) strlen(str), FALSE);
+ SaveBufferToFile (str, GetConfigPath (TC_APPD_FILENAME_NONSYS_INPLACE_ENC_WIPE), (DWORD) strlen(str), FALSE, FALSE);
}
else if (FileExists (GetConfigPath (TC_APPD_FILENAME_NONSYS_INPLACE_ENC_WIPE)))
{
@@ -2017,7 +2017,7 @@ BOOL SaveNonSysInPlaceEncSettings (int delta, WipeAlgorithmId newWipeAlgorithm, StringCbPrintfA (str, sizeof(str), "%d", count);
- return SaveBufferToFile (str, GetConfigPath (TC_APPD_FILENAME_NONSYS_INPLACE_ENC), (DWORD) strlen(str), FALSE);
+ return SaveBufferToFile (str, GetConfigPath (TC_APPD_FILENAME_NONSYS_INPLACE_ENC), (DWORD) strlen(str), FALSE, FALSE);
}
|