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

Windows: Add support for /nosizecheck switch in Format command line file container creation

This commit is contained in:
Mounir IDRASSI
2019-10-02 18:57:30 +02:00
parent fa3d4c79c9
commit b39a724f26

View File

@@ -6243,7 +6243,7 @@ BOOL CALLBACK MainDialogProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa
}
else
{
if (!dynamicFormat && (nVolumeSize > free.QuadPart))
if (!dynamicFormat && !bDontCheckFileContainerSize && (nVolumeSize > free.QuadPart))
{
AbortProcess ("ERR_CONTAINER_SIZE_TOO_BIG");
}