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:
@@ -1545,9 +1545,11 @@ static VOID SetupThreadProc (PVOID threadArg)
|
|||||||
{
|
{
|
||||||
status = SaveDriveVolumeHeader (Extension);
|
status = SaveDriveVolumeHeader (Extension);
|
||||||
ASSERT (NT_SUCCESS (status));
|
ASSERT (NT_SUCCESS (status));
|
||||||
|
if (NT_SUCCESS (status))
|
||||||
headerUpdateRequired = FALSE;
|
{
|
||||||
bytesWrittenSinceHeaderUpdate = 0;
|
headerUpdateRequired = FALSE;
|
||||||
|
bytesWrittenSinceHeaderUpdate = 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user