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

Windows Driver: if saving volume header fails, don't mark operation as successful so that it will be retried later.

This commit is contained in:
Mounir IDRASSI
2016-02-07 02:15:37 +01:00
parent ae7ec4802a
commit 8518d55834

View File

@@ -1545,11 +1545,13 @@ static VOID SetupThreadProc (PVOID threadArg)
{
status = SaveDriveVolumeHeader (Extension);
ASSERT (NT_SUCCESS (status));
if (NT_SUCCESS (status))
{
headerUpdateRequired = FALSE;
bytesWrittenSinceHeaderUpdate = 0;
}
}
}
abort:
SetupResult = STATUS_SUCCESS;