mirror of
https://github.com/veracrypt/VeraCrypt.git
synced 2025-11-11 02:58:02 -06:00
Windows: fix buffer overrun caused by wrong use of wmemset
This commit is contained in:
@@ -3746,7 +3746,7 @@ BOOL CALLBACK PageDialogProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa
|
||||
|
||||
SetWindowTextW (GetDlgItem (GetParent (hwndDlg), IDC_BOX_TITLE), finalMsg);
|
||||
|
||||
wmemset (finalMsg, 0, sizeof (finalMsg));
|
||||
memset (finalMsg, 0, sizeof (finalMsg));
|
||||
try
|
||||
{
|
||||
StringCbPrintfW (finalMsg, sizeof(finalMsg),
|
||||
|
||||
Reference in New Issue
Block a user