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/WinterSpeak/src/EventInformation.cpp | |
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/WinterSpeak/src/EventInformation.cpp')
-rw-r--r-- | plugins/WinterSpeak/src/EventInformation.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/WinterSpeak/src/EventInformation.cpp b/plugins/WinterSpeak/src/EventInformation.cpp index 8d8a8ea739..21c90a7b85 100644 --- a/plugins/WinterSpeak/src/EventInformation.cpp +++ b/plugins/WinterSpeak/src/EventInformation.cpp @@ -14,7 +14,7 @@ EventInformation::EventInformation() : m_event_strings(), m_event_info() m_event_strings[EVENTTYPE_AUTHREQUEST] = TranslateW(L"%u requests your authorization");
m_event_strings[EVENTTYPE_FILE] = TranslateW(L"there is an incoming file from %u");
- ZeroMemory(&m_event_info, sizeof(m_event_info));
+ memset(&m_event_info, 0, sizeof(m_event_info));
}
//------------------------------------------------------------------------------
@@ -30,7 +30,7 @@ bool EventInformation::isValidEvent(HANDLE event) {
delete m_event_info.pBlob;
}
- ZeroMemory(&m_event_info, sizeof(m_event_info));
+ memset(&m_event_info, 0, sizeof(m_event_info));
// find out and assign the space we need for the new event
m_event_info.cbSize = sizeof(m_event_info);
|