diff options
author | Rozhuk Ivan <rozhuk.im@gmail.com> | 2014-12-01 00:07:01 +0000 |
---|---|---|
committer | Rozhuk Ivan <rozhuk.im@gmail.com> | 2014-12-01 00:07:01 +0000 |
commit | b2fad485cd5b41744ef0cc4a02722c021afd926c (patch) | |
tree | aa19403cd699066600e8306be8ad33e4a17fba6f /plugins/FileAsMessage | |
parent | fc62f1f1e1f8af40a1f7efe0ba3afc358fb66ef3 (diff) |
ZeroMemory -> memset, few bugs fised
git-svn-id: http://svn.miranda-ng.org/main/trunk@11184 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/FileAsMessage')
-rw-r--r-- | plugins/FileAsMessage/src/dialog.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
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;
|