mirror of
https://github.com/veracrypt/VeraCrypt
synced 2024-11-09 20:53:35 +01:00
Windows: fix buffer overrun caused by wrong use of wmemset
This commit is contained in:
parent
768effbe96
commit
70e9868c8e
@ -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),
|
||||
|
Loading…
Reference in New Issue
Block a user