From b2fad485cd5b41744ef0cc4a02722c021afd926c Mon Sep 17 00:00:00 2001 From: Rozhuk Ivan Date: Mon, 1 Dec 2014 00:07:01 +0000 Subject: ZeroMemory -> memset, few bugs fised git-svn-id: http://svn.miranda-ng.org/main/trunk@11184 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/FileAsMessage/src/dialog.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins/FileAsMessage') diff --git a/plugins/FileAsMessage/src/dialog.cpp b/plugins/FileAsMessage/src/dialog.cpp index 6e5bdbe79b..26394fa7b8 100644 --- a/plugins/FileAsMessage/src/dialog.cpp +++ b/plugins/FileAsMessage/src/dialog.cpp @@ -268,7 +268,7 @@ void FILEECHO::updateTitle() void BuildFreqTable(uchar *data, uint len, uint *freqTable) { - ZeroMemory(freqTable, 256*sizeof(uint)); + memset(freqTable, 0, (256 * sizeof(uint))); for(uint indx = 0; indx < len; indx++) freqTable[data[indx]]++; } @@ -481,7 +481,7 @@ void FILEECHO::incomeRequest(char *param) if(!IsWindowVisible(hDlg) && !AutoMin) { CLISTEVENT cle; - ZeroMemory(&cle, sizeof(cle)); + memset(&cle, 0, sizeof(cle)); cle.cbSize = sizeof(cle); cle.hContact = hContact; cle.hIcon = LoadIcon(hInst, MAKEINTRESOURCE(IDI_SMALLICON)); @@ -1171,7 +1171,7 @@ INT_PTR CALLBACK DialogProc( HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam char str[MAX_PATH]; OPENFILENAME ofn; - ZeroMemory(&ofn, sizeof(ofn)); + memset(&ofn, 0, sizeof(ofn)); *str = 0; GetDlgItemText(hDlg, IDC_FILENAME, str, SIZEOF(str)); //ofn.lStructSize = OPENFILENAME_SIZE_VERSION_400; -- cgit v1.2.3